Skip to content

Commit

Permalink
wget, fwknop: fixup after configureFlags refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
hedning authored and vcunat committed Aug 12, 2018
1 parent 7b3036a commit 580cab5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/networking/wget/default.nix
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/tools/security/fwknop/default.nix
Expand Up @@ -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}"
Expand Down

0 comments on commit 580cab5

Please sign in to comment.