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

34 lines
795 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-02-04 23:59:53 +00:00
version = "5.7p3";
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-02-04 23:59:53 +00:00
sha256 = "4f417c8a4c21ed7ec3811107829f931404f9bf121855b8571a2ca3355695343a";
};
2015-02-05 00:17:24 +00:00
patches = [ ./no-install.patch ];
configureFlags = [
"--with-privsep-path=${privsepPath}"
"--with-privsep-user=${privsepUser}"
2015-02-05 00:17:24 +00:00
"--sysconfdir=/etc"
"--localstatedir=/var"
];
buildInputs = [ openssl ];
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 ];
};
}