nixpkgs/pkgs/tools/networking/ntp/default.nix
Franz Pletz bdf4c0d21f ntp: 4.2.8p6 -> 4.2.8p8 (security)
Fixes CVE-2016-4953, CVE-2016-4954, CVE-2016-4955, CVE-2016-4956.
2016-07-10 10:48:11 +02:00

33 lines
860 B
Nix

{ stdenv, fetchurl, autoreconfHook, libcap ? null, openssl ? null }:
assert stdenv.isLinux -> libcap != null;
stdenv.mkDerivation rec {
name = "ntp-4.2.8p8";
src = fetchurl {
url = "http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/${name}.tar.gz";
sha256 = "1vlpgd0dk2wkpmmf869sfxi8f46sfnmjgk51vl8n6vj5y2sx1cra";
};
configureFlags = [
"--sysconfdir=/etc"
"--localstatedir=/var"
"--enable-ignore-dns-errors"
] ++ stdenv.lib.optional (libcap != null) "--enable-linuxcaps";
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libcap openssl ];
postInstall = ''
rm -rf $out/share/doc
'';
meta = {
homepage = http://www.ntp.org/;
description = "An implementation of the Network Time Protocol";
maintainers = [ stdenv.lib.maintainers.eelco ];
platforms = stdenv.lib.platforms.linux;
};
}