2015-02-04 23:59:53 +00:00
|
|
|
{ stdenv, fetchurl, openssl
|
2014-09-01 13:51:50 +01:00
|
|
|
, privsepPath ? "/var/empty"
|
|
|
|
, privsepUser ? "ntp"
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "openntpd-${version}";
|
2016-11-22 02:45:09 +00:00
|
|
|
version = "6.0p1";
|
2014-09-01 13:51:50 +01:00
|
|
|
|
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";
|
2016-11-22 02:45:09 +00:00
|
|
|
sha256 = "1s3plmxmybwpfrimq6sc54wxnn6ca7rb2g5k2bdjm4c88w4q1axi";
|
2014-09-01 13:51:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-privsep-path=${privsepPath}"
|
|
|
|
"--with-privsep-user=${privsepUser}"
|
2015-02-05 00:17:24 +00:00
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
2014-09-01 13:51:50 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
2015-04-08 23:11:45 +01: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; {
|
2014-09-01 13:51:50 +01:00
|
|
|
homepage = "http://www.openntpd.org/";
|
2015-02-04 23:59:53 +00:00
|
|
|
license = licenses.bsd3;
|
2014-09-01 13:51:50 +01:00
|
|
|
description = "OpenBSD NTP daemon (Debian port)";
|
2015-02-04 23:59:53 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2014-09-01 13:51:50 +01:00
|
|
|
};
|
|
|
|
}
|