summary refs log tree commit diff
path: root/pkgs/tools/networking/wget
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-02 19:02:51 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-03 00:24:28 +0100
commit4943e4134732ddd68cfdef9b95e1317255f5c953 (patch)
tree8a0e5a4a139414c4b23fb8bcebdc428eb6038129 /pkgs/tools/networking/wget
parentd9f06f666590497715a4f0800d52c94c3a00df25 (diff)
downloadnixpkgs-4943e4134732ddd68cfdef9b95e1317255f5c953.tar
nixpkgs-4943e4134732ddd68cfdef9b95e1317255f5c953.tar.gz
nixpkgs-4943e4134732ddd68cfdef9b95e1317255f5c953.tar.bz2
nixpkgs-4943e4134732ddd68cfdef9b95e1317255f5c953.tar.lz
nixpkgs-4943e4134732ddd68cfdef9b95e1317255f5c953.tar.xz
nixpkgs-4943e4134732ddd68cfdef9b95e1317255f5c953.tar.zst
nixpkgs-4943e4134732ddd68cfdef9b95e1317255f5c953.zip
wget: make libpsl attribute properly optional
Diffstat (limited to 'pkgs/tools/networking/wget')
-rw-r--r--pkgs/tools/networking/wget/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/wget/default.nix b/pkgs/tools/networking/wget/default.nix
index 5abc84bb1ea..a6d2913abf6 100644
--- a/pkgs/tools/networking/wget/default.nix
+++ b/pkgs/tools/networking/wget/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchurl, gettext, libidn, pkgconfig
 , perl, perlPackages, LWP, python3
-, libiconv, libpsl, openssl ? null }:
+, libiconv, libpsl ? null, openssl ? null }:
 
 stdenv.mkDerivation rec {
   name = "wget-1.17.1";