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