Skip to content

Commit

Permalink
xinetd: patch for CVE-2013-4342
Browse files Browse the repository at this point in the history
  • Loading branch information
Graham Christensen authored and grahamc committed Nov 17, 2016
1 parent 1eb545d commit 7ed55dc
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pkgs/servers/xinetd/default.nix
@@ -1,4 +1,4 @@
{ fetchurl, stdenv }:
{ fetchurl, fetchpatch, stdenv }:

stdenv.mkDerivation rec {
name = "xinetd-2.3.15";
Expand All @@ -8,6 +8,14 @@ stdenv.mkDerivation rec {
sha256 = "1qsv1al506x33gh92bqa8w21k7mxqrbsrwmxvkj0amn72420ckmz";
};

patches = [
(fetchpatch {
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/sys-apps/xinetd/files/xinetd-2.3.15-creds.patch?id=426002bfe2789fb6213fba832c8bfee634d68d02";
name = "CVE-2013-4342.patch";
sha256 = "1iqcrqzgisz4b6vamprzg2y6chai7qpifqcihisrwbjwbc4wzj8v";
})
];

meta = {
description = "Secure replacement for inetd";
platforms = stdenv.lib.platforms.linux;
Expand Down

0 comments on commit 7ed55dc

Please sign in to comment.