2014-12-25 11:28:12 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libcap, openssl }:
|
2006-12-22 19:22:57 +00:00
|
|
|
|
|
|
|
assert stdenv.isLinux -> libcap != null;
|
2014-02-03 22:15:25 +00:00
|
|
|
|
2009-03-31 10:26:20 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-12-25 11:28:12 +00:00
|
|
|
name = "ntp-4.2.8";
|
2014-02-03 22:15:25 +00:00
|
|
|
|
2006-12-21 22:23:17 +00:00
|
|
|
src = fetchurl {
|
2009-03-31 10:26:20 +01:00
|
|
|
url = "http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/${name}.tar.gz";
|
2014-12-25 11:28:12 +00:00
|
|
|
sha256 = "1vnqa1542d01xmlkw8f3rq57y360b2j7yxkkg9b11955nvw0v4if";
|
2006-12-21 22:23:17 +00:00
|
|
|
};
|
2014-02-03 22:15:25 +00:00
|
|
|
|
2014-12-25 11:28:12 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-02-03 22:15:25 +00:00
|
|
|
|
2014-12-25 11:28:12 +00:00
|
|
|
buildInputs = [ openssl ]
|
|
|
|
++ stdenv.lib.optional stdenv.isLinux libcap;
|
2008-09-18 22:15:14 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.ntp.org/;
|
|
|
|
description = "An implementation of the Network Time Protocol";
|
2014-02-03 22:15:25 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2008-09-18 22:15:14 +01:00
|
|
|
};
|
2006-12-21 22:23:17 +00:00
|
|
|
}
|