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

33 lines
860 B
Nix
Raw Normal View History

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