nixpkgs/pkgs/tools/networking/ntp/default.nix

40 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl, perl, libcap ? null, libseccomp ? null }:
assert stdenv.isLinux -> libcap != null;
2016-11-21 23:11:05 +01:00
assert stdenv.isLinux -> libseccomp != null;
2014-02-03 23:15:25 +01:00
stdenv.mkDerivation rec {
name = "ntp-4.2.8p9";
2014-02-03 23:15:25 +01:00
src = fetchurl {
url = "http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/${name}.tar.gz";
sha256 = "0whbyf82lrczbri4adbsa4hg1ppfa6c7qcj7nhjwdfp1g1vjh95p";
};
2014-02-03 23:15:25 +01:00
2015-04-25 00:28:48 +02:00
configureFlags = [
"--sysconfdir=/etc"
"--localstatedir=/var"
"--with-openssl-libdir=${openssl.out}/lib"
"--with-openssl-incdir=${openssl.dev}/include"
2015-04-25 00:28:48 +02:00
"--enable-ignore-dns-errors"
2016-11-21 23:11:05 +01:00
] ++ stdenv.lib.optionals stdenv.isLinux [
"--enable-linuxcaps"
"--enable-libseccomp"
];
2014-02-03 23:15:25 +01:00
buildInputs = [ libcap openssl libseccomp perl ];
hardeningEnable = [ "pie" ];
2016-02-26 18:26:03 +01:00
2015-04-25 00:28:48 +02:00
postInstall = ''
rm -rf $out/share/doc
'';
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;
};
}