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

37 lines
831 B
Nix
Raw Normal View History

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