summary refs log tree commit diff
path: root/pkgs/development/tools/wrangler/default.nix
diff options
context:
space:
mode:
authorhappysalada <raphael@megzari.com>2021-03-25 15:37:34 +0900
committerhappysalada <raphael@megzari.com>2021-03-25 15:37:34 +0900
commit326445a4d66aeb20d0222bbab21d84da5c6aa432 (patch)
tree6ee25817ae13869a36266dc5c8fe80dc2f773892 /pkgs/development/tools/wrangler/default.nix
parent77cf1c3445481e1563b9da5498356dcf7d8bf1cf (diff)
downloadnixpkgs-326445a4d66aeb20d0222bbab21d84da5c6aa432.tar
nixpkgs-326445a4d66aeb20d0222bbab21d84da5c6aa432.tar.gz
nixpkgs-326445a4d66aeb20d0222bbab21d84da5c6aa432.tar.bz2
nixpkgs-326445a4d66aeb20d0222bbab21d84da5c6aa432.tar.lz
nixpkgs-326445a4d66aeb20d0222bbab21d84da5c6aa432.tar.xz
nixpkgs-326445a4d66aeb20d0222bbab21d84da5c6aa432.tar.zst
nixpkgs-326445a4d66aeb20d0222bbab21d84da5c6aa432.zip
wrangler: fix darwin build
Diffstat (limited to 'pkgs/development/tools/wrangler/default.nix')
-rw-r--r--pkgs/development/tools/wrangler/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/wrangler/default.nix b/pkgs/development/tools/wrangler/default.nix
index 0458f63fddb..5fc7b6a1807 100644
--- a/pkgs/development/tools/wrangler/default.nix
+++ b/pkgs/development/tools/wrangler/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, Security, CoreServices, CoreFoundation }:
+{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, Security, CoreServices, CoreFoundation, libiconv }:
 
 rustPlatform.buildRustPackage rec {
   pname = "wrangler";
@@ -16,7 +16,7 @@ rustPlatform.buildRustPackage rec {
   nativeBuildInputs = [ pkg-config ];
 
   buildInputs = [ openssl ]
-    ++ lib.optionals stdenv.isDarwin [ curl CoreFoundation CoreServices Security ];
+    ++ lib.optionals stdenv.isDarwin [ curl CoreFoundation CoreServices Security libiconv ];
 
   OPENSSL_NO_VENDOR = 1;