nixpkgs/pkgs/servers/xinetd/default.nix
Eelco Dolstra 9cc0637247 * Add xinetd to the channel.
svn path=/nixpkgs/trunk/; revision=30865
2011-12-13 12:43:11 +00:00

18 lines
390 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";
platforms = stdenv.lib.platforms.linux;
homepage = http://xinetd.org;
license = "free";
};
}