Adding the xinetd package.
svn path=/nixpkgs/trunk/; revision=16779
This commit is contained in:
parent
62a8e0806b
commit
f474284147
16
pkgs/servers/xinetd/default.nix
Normal file
16
pkgs/servers/xinetd/default.nix
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{ 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";
|
||||||
|
};
|
||||||
|
}
|
@ -4639,6 +4639,10 @@ let
|
|||||||
inherit fetchurl openssl stdenv libcap pam;
|
inherit fetchurl openssl stdenv libcap pam;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
xinetd = import ../servers/xinetd {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
xorg = recurseIntoAttrs (import ../servers/x11/xorg/default.nix {
|
xorg = recurseIntoAttrs (import ../servers/x11/xorg/default.nix {
|
||||||
inherit fetchurl fetchsvn stdenv pkgconfig freetype fontconfig
|
inherit fetchurl fetchsvn stdenv pkgconfig freetype fontconfig
|
||||||
libxslt expat libdrm libpng zlib perl mesa mesaHeaders
|
libxslt expat libdrm libpng zlib perl mesa mesaHeaders
|
||||||
|
Loading…
Reference in New Issue
Block a user