3
0
Fork 0
forked from mirrors/nixpkgs

* NTP daemon.

svn path=/nixpkgs/trunk/; revision=7459
This commit is contained in:
Eelco Dolstra 2006-12-21 22:23:17 +00:00
parent e726057b32
commit 000b1f4cd6
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "ntp-4.2.2p4";
src = fetchurl {
url = http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2.2p4.tar.gz;
md5 = "916fe57525f8327f340b203f129088fa";
};
}

View file

@ -434,6 +434,10 @@ rec {
inherit fetchurl stdenv;
};
ntp = import ../tools/networking/ntp {
inherit fetchurl stdenv;
};
openssh = import ../tools/networking/openssh {
inherit fetchurl stdenv zlib openssl pam perl;
inherit (xlibs) xauth;