2016-12-28 04:35:42 +01:00
|
|
|
{ stdenv, fetchurl, libressl
|
2014-09-01 14:51:50 +02:00
|
|
|
, privsepPath ? "/var/empty"
|
|
|
|
, privsepUser ? "ntp"
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "openntpd-${version}";
|
2018-02-27 17:56:43 +01:00
|
|
|
version = "6.2p3";
|
2014-09-01 14:51:50 +02:00
|
|
|
|
2015-02-05 00:59:53 +01:00
|
|
|
src = fetchurl {
|
2015-02-05 01:04:24 +01:00
|
|
|
url = "mirror://openbsd/OpenNTPD/${name}.tar.gz";
|
2018-02-27 17:56:43 +01:00
|
|
|
sha256 = "0fn12i4kzsi0zkr4qp3dp9bycmirnfapajqvdfx02zhr4hanj0kv";
|
2014-09-01 14:51:50 +02:00
|
|
|
};
|
|
|
|
|
2017-09-22 21:00:46 +02:00
|
|
|
prePatch = ''
|
|
|
|
sed -i '20i#include <sys/cdefs.h>' src/ntpd.h
|
|
|
|
sed -i '19i#include <sys/cdefs.h>' src/log.c
|
|
|
|
'';
|
|
|
|
|
2014-09-01 14:51:50 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--with-privsep-path=${privsepPath}"
|
|
|
|
"--with-privsep-user=${privsepUser}"
|
2015-02-05 01:17:24 +01:00
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
2017-02-16 22:06:57 +01:00
|
|
|
"--with-cacert=/etc/ssl/certs/ca-certificates.crt"
|
2014-09-01 14:51:50 +02:00
|
|
|
];
|
|
|
|
|
2016-12-28 04:35:42 +01:00
|
|
|
buildInputs = [ libressl ];
|
2014-09-01 14:51:50 +02:00
|
|
|
|
2015-04-09 00:11:45 +02:00
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=\${out}/etc"
|
|
|
|
"localstatedir=\${TMPDIR}"
|
|
|
|
];
|
2015-03-27 00:07:02 +01:00
|
|
|
|
2015-02-05 00:59:53 +01:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://www.openntpd.org/;
|
2015-02-05 00:59:53 +01:00
|
|
|
license = licenses.bsd3;
|
2014-09-01 14:51:50 +02:00
|
|
|
description = "OpenBSD NTP daemon (Debian port)";
|
2015-02-05 00:59:53 +01:00
|
|
|
platforms = platforms.all;
|
2014-09-01 14:51:50 +02:00
|
|
|
};
|
|
|
|
}
|