wget, fwknop: fixup after configureFlags refactoring

This commit is contained in:
Tor Hedin Brønner
2018-08-12 10:08:46 +02:00
committed by Vladimír Čunát
parent 7b3036a4a2
commit 580cab57e4
2 changed files with 3 additions and 3 deletions

View File

@@ -34,8 +34,8 @@ stdenv.mkDerivation rec {
++ stdenv.lib.optional (libpsl != null) libpsl
++ stdenv.lib.optional stdenv.isDarwin perl;
configureFlags = [
(stdenv.lib.withFeatureAs (openssl != null) "ssl" openssl)
configureFlags = [
(stdenv.lib.withFeatureAs (openssl != null) "ssl" "openssl")
];
doCheck = false;

View File

@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
"--with-iptables=${iptables}/sbin/iptables"
(stdenv.lib.enableFeature buildServer "server")
(stdenv.lib.enableFeature buildClient "client")
(stdenv.lib.withFeatureAs wgetSupport wget "${wget}/bin/wget")
(stdenv.lib.withFeatureAs wgetSupport "wget" "${wget}/bin/wget")
] ++ stdenv.lib.optionalString gnupgSupport [
"--with-gpgme"
"--with-gpgme-prefix=${gpgme.dev}"