mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
f474284147
svn path=/nixpkgs/trunk/; revision=16779
16 lines
346 B
Nix
16 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";
|
|
};
|
|
}
|