mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
openntpd: v6+ requires libressl for constraints
This commit is contained in:
parent
c311871a6d
commit
0e0fb196ca
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl, openssl
|
{ stdenv, fetchurl, libressl
|
||||||
, privsepPath ? "/var/empty"
|
, privsepPath ? "/var/empty"
|
||||||
, privsepUser ? "ntp"
|
, privsepUser ? "ntp"
|
||||||
}:
|
}:
|
||||||
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||||
"--localstatedir=/var"
|
"--localstatedir=/var"
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [ openssl ];
|
buildInputs = [ libressl ];
|
||||||
|
|
||||||
installFlags = [
|
installFlags = [
|
||||||
"sysconfdir=\${out}/etc"
|
"sysconfdir=\${out}/etc"
|
||||||
|
|
Loading…
Reference in a new issue