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

38 lines
886 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libressl
, privsepPath ? "/var/empty"
, privsepUser ? "ntp"
}:
stdenv.mkDerivation rec {
name = "openntpd-${version}";
2017-07-31 17:14:45 -07:00
version = "6.2p1";
2015-02-04 15:59:53 -08:00
src = fetchurl {
2015-02-04 16:04:24 -08:00
url = "mirror://openbsd/OpenNTPD/${name}.tar.gz";
2017-07-31 17:14:45 -07:00
sha256 = "1g6hi03ylhv47sbar3xxgsrar8schqfwn4glckh6m6lni67ndq85";
};
configureFlags = [
"--with-privsep-path=${privsepPath}"
"--with-privsep-user=${privsepUser}"
2015-02-04 16:17:24 -08:00
"--sysconfdir=/etc"
"--localstatedir=/var"
"--with-cacert=/etc/ssl/certs/ca-certificates.crt"
];
buildInputs = [ libressl ];
2015-04-08 15:11:45 -07:00
installFlags = [
"sysconfdir=\${out}/etc"
"localstatedir=\${TMPDIR}"
];
2015-03-26 16:07:02 -07:00
2015-02-04 15:59:53 -08:00
meta = with stdenv.lib; {
homepage = http://www.openntpd.org/;
2015-02-04 15:59:53 -08:00
license = licenses.bsd3;
description = "OpenBSD NTP daemon (Debian port)";
2015-02-04 15:59:53 -08:00
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}