mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-24 20:02:58 +03:00
xinetd: patch for CVE-2013-4342
This commit is contained in:
parent
1eb545df05
commit
7ed55dc9e4
@ -1,4 +1,4 @@
|
|||||||
{ fetchurl, stdenv }:
|
{ fetchurl, fetchpatch, stdenv }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "xinetd-2.3.15";
|
name = "xinetd-2.3.15";
|
||||||
@ -8,6 +8,14 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1qsv1al506x33gh92bqa8w21k7mxqrbsrwmxvkj0amn72420ckmz";
|
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 = {
|
meta = {
|
||||||
description = "Secure replacement for inetd";
|
description = "Secure replacement for inetd";
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
Loading…
Reference in New Issue
Block a user