f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
36 lines
831 B
Nix
36 lines
831 B
Nix
{ stdenv, fetchurl, libressl
|
|
, privsepPath ? "/var/empty"
|
|
, privsepUser ? "ntp"
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "openntpd-${version}";
|
|
version = "6.2p1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://openbsd/OpenNTPD/${name}.tar.gz";
|
|
sha256 = "1g6hi03ylhv47sbar3xxgsrar8schqfwn4glckh6m6lni67ndq85";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--with-privsep-path=${privsepPath}"
|
|
"--with-privsep-user=${privsepUser}"
|
|
"--sysconfdir=/etc"
|
|
"--localstatedir=/var"
|
|
];
|
|
|
|
buildInputs = [ libressl ];
|
|
|
|
installFlags = [
|
|
"sysconfdir=\${out}/etc"
|
|
"localstatedir=\${TMPDIR}"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.openntpd.org/;
|
|
license = licenses.bsd3;
|
|
description = "OpenBSD NTP daemon (Debian port)";
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|