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

41 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, openssl, perl, pps-tools, libcap }:
stdenv.mkDerivation rec {
pname = "ntp";
version = "4.2.8p15";
2014-02-03 22:15:25 +00:00
src = fetchurl {
url = "https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-${lib.versions.majorMinor version}/ntp-${version}.tar.gz";
2020-07-05 20:27:41 +00:00
sha256 = "06cwhimm71safmwvp6nhxp6hvxsg62whnbgbgiflsqb8mgg40n7n";
};
2014-02-03 22:15:25 +00:00
2015-04-24 22:28:48 +00:00
configureFlags = [
"--sysconfdir=/etc"
"--localstatedir=/var"
"--with-openssl-libdir=${openssl.out}/lib"
"--with-openssl-incdir=${openssl.dev}/include"
2015-04-24 22:28:48 +00:00
"--enable-ignore-dns-errors"
2018-10-12 12:48:59 +00:00
"--with-yielding-select=yes"
] ++ lib.optional stdenv.isLinux "--enable-linuxcaps";
2014-02-03 22:15:25 +00:00
buildInputs = [ openssl perl ]
++ lib.optionals stdenv.isLinux [ pps-tools libcap ];
hardeningEnable = [ "pie" ];
2016-02-26 17:26:03 +00:00
2015-04-24 22:28:48 +00:00
postInstall = ''
rm -rf $out/share/doc
'';
meta = with lib; {
2020-03-05 14:45:43 +00:00
homepage = "http://www.ntp.org/";
description = "An implementation of the Network Time Protocol";
2018-08-17 21:52:16 +00:00
license = {
# very close to isc and bsd2
url = "https://www.eecis.udel.edu/~mills/ntp/html/copyright.html";
2018-08-17 21:52:16 +00:00
};
maintainers = with maintainers; [ eelco thoughtpolice ];
platforms = platforms.unix;
};
}