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

37 lines
831 B
Nix
Raw Normal View History

2015-02-04 23:59:53 +00:00
{ stdenv, fetchurl, openssl
, privsepPath ? "/var/empty"
, privsepUser ? "ntp"
}:
stdenv.mkDerivation rec {
name = "openntpd-${version}";
2015-03-26 23:07:02 +00:00
version = "5.7p4";
2015-02-04 23:59:53 +00:00
src = fetchurl {
2015-02-05 00:04:24 +00:00
url = "mirror://openbsd/OpenNTPD/${name}.tar.gz";
2015-03-26 23:07:02 +00:00
sha256 = "08ybpi351284wj53qqrmg13j8l7md397yrqsmg0aqxg3frcxk4x9";
};
configureFlags = [
"--with-privsep-path=${privsepPath}"
"--with-privsep-user=${privsepUser}"
2015-02-05 00:17:24 +00:00
"--sysconfdir=/etc"
"--localstatedir=/var"
];
buildInputs = [ openssl ];
2015-04-08 22:11:45 +00:00
installFlags = [
"sysconfdir=\${out}/etc"
"localstatedir=\${TMPDIR}"
];
2015-03-26 23:07:02 +00:00
2015-02-04 23:59:53 +00:00
meta = with stdenv.lib; {
homepage = "http://www.openntpd.org/";
2015-02-04 23:59:53 +00:00
license = licenses.bsd3;
description = "OpenBSD NTP daemon (Debian port)";
2015-02-04 23:59:53 +00:00
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}