lol

wget, fwknop: fixup after configureFlags refactoring

authored by

Tor Hedin Brønner and committed by
Vladimír Čunát
580cab57 7b3036a4

+3 -3
+2 -2
pkgs/tools/networking/wget/default.nix
··· 34 34 ++ stdenv.lib.optional (libpsl != null) libpsl 35 35 ++ stdenv.lib.optional stdenv.isDarwin perl; 36 36 37 - configureFlags = [ 38 - (stdenv.lib.withFeatureAs (openssl != null) "ssl" openssl) 37 + configureFlags = [ 38 + (stdenv.lib.withFeatureAs (openssl != null) "ssl" "openssl") 39 39 ]; 40 40 41 41 doCheck = false;
+1 -1
pkgs/tools/security/fwknop/default.nix
··· 29 29 "--with-iptables=${iptables}/sbin/iptables" 30 30 (stdenv.lib.enableFeature buildServer "server") 31 31 (stdenv.lib.enableFeature buildClient "client") 32 - (stdenv.lib.withFeatureAs wgetSupport wget "${wget}/bin/wget") 32 + (stdenv.lib.withFeatureAs wgetSupport "wget" "${wget}/bin/wget") 33 33 ] ++ stdenv.lib.optionalString gnupgSupport [ 34 34 "--with-gpgme" 35 35 "--with-gpgme-prefix=${gpgme.dev}"