summary refs log tree commit diff
diff options
context:
space:
mode:
authorTor Hedin Brønner <torhedinbronner@gmail.com>2018-08-12 10:08:46 +0200
committerVladimír Čunát <vcunat@gmail.com>2018-08-12 10:08:46 +0200
commit580cab57e4f188d25144e398d7b8e3d5085299a9 (patch)
tree6452f65686b18365a010279da7a675ea447a6ca1
parent7b3036a4a2117378b199ab700c4ece2393a83df8 (diff)
downloadnixpkgs-580cab57e4f188d25144e398d7b8e3d5085299a9.tar
nixpkgs-580cab57e4f188d25144e398d7b8e3d5085299a9.tar.gz
nixpkgs-580cab57e4f188d25144e398d7b8e3d5085299a9.tar.bz2
nixpkgs-580cab57e4f188d25144e398d7b8e3d5085299a9.tar.lz
nixpkgs-580cab57e4f188d25144e398d7b8e3d5085299a9.tar.xz
nixpkgs-580cab57e4f188d25144e398d7b8e3d5085299a9.tar.zst
nixpkgs-580cab57e4f188d25144e398d7b8e3d5085299a9.zip
wget, fwknop: fixup after configureFlags refactoring
-rw-r--r--pkgs/tools/networking/wget/default.nix4
-rw-r--r--pkgs/tools/security/fwknop/default.nix2
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/networking/wget/default.nix b/pkgs/tools/networking/wget/default.nix
index cd1801318a6..0bd99c63596 100644
--- a/pkgs/tools/networking/wget/default.nix
+++ b/pkgs/tools/networking/wget/default.nix
@@ -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;
diff --git a/pkgs/tools/security/fwknop/default.nix b/pkgs/tools/security/fwknop/default.nix
index a8fc864afd6..812c032230c 100644
--- a/pkgs/tools/security/fwknop/default.nix
+++ b/pkgs/tools/security/fwknop/default.nix
@@ -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}"