f474284147
svn path=/nixpkgs/trunk/; revision=16779
17 lines
346 B
Nix
17 lines
346 B
Nix
{ fetchurl, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xinetd-2.3.14";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.xinetd.org/${name}.tar.gz";
|
|
sha256 = "07xws1ydxrrx4xinvfqkc66diwfjh2apxz33xw4hb6k0gihhw3kn";
|
|
};
|
|
|
|
meta = {
|
|
description = "Secure replacement for inetd";
|
|
homepage = http://xinetd.org;
|
|
license = "free";
|
|
};
|
|
}
|