007f80c1d0
Should eval cleanly, as far as -A tarball tells me. Relevant: issue #2999, issue #739
18 lines
406 B
Nix
18 lines
406 B
Nix
{ fetchurl, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xinetd-2.3.15";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.xinetd.org/${name}.tar.gz";
|
|
sha256 = "1qsv1al506x33gh92bqa8w21k7mxqrbsrwmxvkj0amn72420ckmz";
|
|
};
|
|
|
|
meta = {
|
|
description = "Secure replacement for inetd";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
homepage = http://xinetd.org;
|
|
license = stdenv.lib.licenses.free;
|
|
};
|
|
}
|