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

42 lines
955 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libressl
, privsepPath ? "/var/empty"
, privsepUser ? "ntp"
}:
stdenv.mkDerivation rec {
name = "openntpd-${version}";
version = "6.2p3";
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";
sha256 = "0fn12i4kzsi0zkr4qp3dp9bycmirnfapajqvdfx02zhr4hanj0kv";
};
prePatch = ''
sed -i '20i#include <sys/cdefs.h>' src/ntpd.h
sed -i '19i#include <sys/cdefs.h>' src/log.c
'';
configureFlags = [
"--with-privsep-path=${privsepPath}"
"--with-privsep-user=${privsepUser}"
2015-02-05 00:17:24 +00:00
"--sysconfdir=/etc"
"--localstatedir=/var"
"--with-cacert=/etc/ssl/certs/ca-certificates.crt"
];
buildInputs = [ libressl ];
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;
};
}