1
0
Fork 1
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:
Sophie Taylor 2016-12-28 13:35:42 +10:00 committed by GitHub
parent c311871a6d
commit 0e0fb196ca

View file

@ -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"