forked from mirrors/nixpkgs
wget, fwknop: fixup after configureFlags refactoring
This commit is contained in:
parent
7b3036a4a2
commit
580cab57e4
|
@ -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;
|
||||
|
|
|
@ -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}"
|
||||
|
|
Loading…
Reference in a new issue