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}";
|
2015-02-04 23:59:53 +00:00
|
|
|
version = "5.7p3";
|
2014-09-01 13:51:50 +01:00
|
|
|
|
2015-02-04 23:59:53 +00:00
|
|
|
src = fetchurl {
|
2014-09-01 13:51:50 +01:00
|
|
|
url = "git://git.debian.org/collab-maint/openntpd.git";
|
2015-02-04 23:59:53 +00:00
|
|
|
sha256 = "4f417c8a4c21ed7ec3811107829f931404f9bf121855b8571a2ca3355695343a";
|
2014-09-01 13:51:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -i -e '/^install:/,/^$/{/@if.*PRIVSEP_PATH/,/^$/d}' Makefile.in
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-privsep-path=${privsepPath}"
|
|
|
|
"--with-privsep-user=${privsepUser}"
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|