2015-04-25 00:28:48 +02:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, libcap ? null, openssl ? null }:
|
2006-12-22 20:22:57 +01:00
|
|
|
|
|
|
|
assert stdenv.isLinux -> libcap != null;
|
2014-02-03 23:15:25 +01:00
|
|
|
|
2009-03-31 11:26:20 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2016-02-27 16:29:48 +01:00
|
|
|
name = "ntp-4.2.8p6";
|
2014-02-03 23:15:25 +01:00
|
|
|
|
2006-12-21 23:23:17 +01:00
|
|
|
src = fetchurl {
|
2009-03-31 11:26:20 +02:00
|
|
|
url = "http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/${name}.tar.gz";
|
2016-02-27 16:29:48 +01:00
|
|
|
sha256 = "0j509gd0snj8dq15rhfv2v4wisfaabya1gmgqslk1kisawf0wgaq";
|
2006-12-21 23:23:17 +01:00
|
|
|
};
|
2014-02-03 23:15:25 +01:00
|
|
|
|
2015-04-25 00:28:48 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--enable-ignore-dns-errors"
|
|
|
|
] ++ stdenv.lib.optional (libcap != null) "--enable-linuxcaps";
|
2014-02-03 23:15:25 +01:00
|
|
|
|
2015-04-25 00:28:48 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ libcap openssl ];
|
2014-12-28 19:14:50 +01:00
|
|
|
|
2015-04-25 00:28:48 +02:00
|
|
|
postInstall = ''
|
|
|
|
rm -rf $out/share/doc
|
|
|
|
'';
|
2008-09-18 23:15:14 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.ntp.org/;
|
|
|
|
description = "An implementation of the Network Time Protocol";
|
2014-02-03 23:15:25 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2008-09-18 23:15:14 +02:00
|
|
|
};
|
2006-12-21 23:23:17 +01:00
|
|
|
}
|