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
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA
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}"