summary refs log tree commit diff
path: root/pkgs/servers/xinetd/default.nix
blob: 445c6c57bbf155eb338108f0c5bad11e089f9ccb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ fetchurl, fetchpatch, stdenv }:

stdenv.mkDerivation rec {
  name = "xinetd-2.3.15";

  src = fetchurl {
    url = "http://www.xinetd.org/${name}.tar.gz";
    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;
    homepage = http://xinetd.org;
    license = stdenv.lib.licenses.free;
  };
}