2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchurl, libressl
|
2014-09-01 05:51:50 -07:00
|
|
|
, privsepPath ? "/var/empty"
|
|
|
|
, privsepUser ? "ntp"
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "openntpd";
|
2020-12-09 12:41:21 -08:00
|
|
|
version = "6.8p1";
|
2014-09-01 05:51:50 -07:00
|
|
|
|
2015-02-04 15:59:53 -08:00
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "mirror://openbsd/OpenNTPD/${pname}-${version}.tar.gz";
|
2020-12-09 12:41:21 -08:00
|
|
|
sha256 = "0ijsylc7a4jlpxsqa0jq1w1c7333id8pcakzl7a5749ria1xp0l5";
|
2014-09-01 05:51:50 -07:00
|
|
|
};
|
|
|
|
|
2017-09-22 12:00:46 -07: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 05:51:50 -07:00
|
|
|
configureFlags = [
|
|
|
|
"--with-privsep-path=${privsepPath}"
|
|
|
|
"--with-privsep-user=${privsepUser}"
|
2015-02-04 16:17:24 -08:00
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
2017-02-16 13:06:57 -08:00
|
|
|
"--with-cacert=/etc/ssl/certs/ca-certificates.crt"
|
2014-09-01 05:51:50 -07:00
|
|
|
];
|
|
|
|
|
2016-12-27 19:35:42 -08:00
|
|
|
buildInputs = [ libressl ];
|
2014-09-01 05:51:50 -07:00
|
|
|
|
2015-04-08 15:11:45 -07:00
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=\${out}/etc"
|
|
|
|
"localstatedir=\${TMPDIR}"
|
|
|
|
];
|
2015-03-26 16:07:02 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.openntpd.org/";
|
2015-02-04 15:59:53 -08:00
|
|
|
license = licenses.bsd3;
|
2014-09-01 05:51:50 -07:00
|
|
|
description = "OpenBSD NTP daemon (Debian port)";
|
2015-02-04 15:59:53 -08:00
|
|
|
platforms = platforms.all;
|
2018-12-01 10:55:31 -08:00
|
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
2014-09-01 05:51:50 -07:00
|
|
|
};
|
|
|
|
}
|