2021-10-31 22:27:13 +00:00
|
|
|
{ stdenv, lib, fetchurl, openssl, perl, pps-tools, libcap }:
|
2016-11-26 18:38:17 +00:00
|
|
|
|
2009-03-31 09:26:20 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-08-01 20:48:53 +00:00
|
|
|
pname = "ntp";
|
|
|
|
version = "4.2.8p15";
|
2014-02-03 22:15:25 +00:00
|
|
|
|
2006-12-21 22:23:17 +00:00
|
|
|
src = fetchurl {
|
2021-08-01 20:48:53 +00:00
|
|
|
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";
|
2006-12-21 22:23:17 +00:00
|
|
|
};
|
2014-02-03 22:15:25 +00:00
|
|
|
|
2015-04-24 22:28:48 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
2016-11-21 21:49:02 +00:00
|
|
|
"--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"
|
2021-10-31 22:27:13 +00:00
|
|
|
] ++ lib.optional stdenv.isLinux "--enable-linuxcaps";
|
2014-02-03 22:15:25 +00:00
|
|
|
|
2021-10-31 22:27:13 +00:00
|
|
|
buildInputs = [ openssl perl ]
|
|
|
|
++ lib.optionals stdenv.isLinux [ pps-tools libcap ];
|
2014-12-28 18:14:50 +00:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningEnable = [ "pie" ];
|
2016-02-26 17:26:03 +00:00
|
|
|
|
2015-04-24 22:28:48 +00:00
|
|
|
postInstall = ''
|
|
|
|
rm -rf $out/share/doc
|
|
|
|
'';
|
2008-09-18 21:15:14 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-03-05 14:45:43 +00:00
|
|
|
homepage = "http://www.ntp.org/";
|
2008-09-18 21:15:14 +00:00
|
|
|
description = "An implementation of the Network Time Protocol";
|
2018-08-17 21:52:16 +00:00
|
|
|
license = {
|
|
|
|
# very close to isc and bsd2
|
2020-04-01 01:11:51 +00:00
|
|
|
url = "https://www.eecis.udel.edu/~mills/ntp/html/copyright.html";
|
2018-08-17 21:52:16 +00:00
|
|
|
};
|
2018-12-01 18:55:31 +00:00
|
|
|
maintainers = with maintainers; [ eelco thoughtpolice ];
|
2021-04-16 22:43:03 +00:00
|
|
|
platforms = platforms.unix;
|
2008-09-18 21:15:14 +00:00
|
|
|
};
|
2006-12-21 22:23:17 +00:00
|
|
|
}
|