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

35 lines
892 B
Nix
Raw Normal View History

2015-04-24 23:28:48 +01:00
{ stdenv, fetchurl, autoreconfHook, libcap ? null, openssl ? null }:
assert stdenv.isLinux -> libcap != null;
2014-02-03 22:15:25 +00:00
stdenv.mkDerivation rec {
name = "ntp-4.2.8p8";
2014-02-03 22:15:25 +00:00
src = fetchurl {
url = "http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/${name}.tar.gz";
sha256 = "1vlpgd0dk2wkpmmf869sfxi8f46sfnmjgk51vl8n6vj5y2sx1cra";
};
2014-02-03 22:15:25 +00:00
2015-04-24 23:28:48 +01:00
configureFlags = [
"--sysconfdir=/etc"
"--localstatedir=/var"
"--enable-ignore-dns-errors"
] ++ stdenv.lib.optional (libcap != null) "--enable-linuxcaps";
2014-02-03 22:15:25 +00:00
2015-04-24 23:28:48 +01:00
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libcap openssl ];
hardeningEnable = [ "pie" ];
2016-02-26 17:26:03 +00:00
2015-04-24 23:28:48 +01:00
postInstall = ''
rm -rf $out/share/doc
'';
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;
};
}