* ntp 4.2.4p4.

svn path=/nixpkgs/trunk/; revision=10217
This commit is contained in:
Eelco Dolstra 2008-01-18 13:20:04 +00:00
parent ac4254456e
commit e55c2246ff
1 changed files with 5 additions and 5 deletions

View File

@ -3,14 +3,14 @@
assert stdenv.isLinux -> libcap != null;
stdenv.mkDerivation {
name = "ntp-4.2.4p3";
name = "ntp-4.2.4p4";
src = fetchurl {
url = http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2.4p3.tar.gz;
sha256 = "077y1hw6v0qnp3j3w3pcxgsc76waswqhwsbzfj3jqc79jfh65jv9";
url = http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2.4p4.tar.gz;
sha256 = "0im89i51ap7aqlhxq5isz5xg4h8w8ahwdhir8la3c83h3p47fcmv";
};
configureFlags = "
configureFlags = ''
--without-crypto
${if stdenv.isLinux then "--enable-linuxcaps" else ""}
";
'';
buildInputs = if stdenv.isLinux then [libcap] else [];
}