summary refs log tree commit diff
path: root/pkgs/development/tools/wrangler
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-04 12:54:24 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-05 16:32:40 +0100
commitcca48ed2d0b5076098d7f47567560bd7093b3993 (patch)
treec066cb8ec9a267f6901d71140c8b1f64b435d577 /pkgs/development/tools/wrangler
parentccfef0d23a3ab76a79df31a6d0d0ce944541e480 (diff)
downloadnixpkgs-cca48ed2d0b5076098d7f47567560bd7093b3993.tar
nixpkgs-cca48ed2d0b5076098d7f47567560bd7093b3993.tar.gz
nixpkgs-cca48ed2d0b5076098d7f47567560bd7093b3993.tar.bz2
nixpkgs-cca48ed2d0b5076098d7f47567560bd7093b3993.tar.lz
nixpkgs-cca48ed2d0b5076098d7f47567560bd7093b3993.tar.xz
nixpkgs-cca48ed2d0b5076098d7f47567560bd7093b3993.tar.zst
nixpkgs-cca48ed2d0b5076098d7f47567560bd7093b3993.zip
wranger: remove darwin from inputs
Diffstat (limited to 'pkgs/development/tools/wrangler')
-rw-r--r--pkgs/development/tools/wrangler/default.nix12
1 files changed, 4 insertions, 8 deletions
diff --git a/pkgs/development/tools/wrangler/default.nix b/pkgs/development/tools/wrangler/default.nix
index c7b1c0329f3..f867fd836a3 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, darwin, perl }:
+{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, Security, CoreServices, CoreFoundation, perl }:
 
 rustPlatform.buildRustPackage rec {
   pname = "wrangler";
@@ -13,15 +13,11 @@ rustPlatform.buildRustPackage rec {
 
   cargoSha256 = "0w845virvw7mvibc76ar2hbffhfzj2v8v1xkrsssrgzyaryb48jk";
 
-  nativeBuildInputs = [ perl ] ++ lib.optionals stdenv.isLinux [ pkg-config ];
+  nativeBuildInputs = [ perl ]
+    ++ lib.optionals stdenv.isLinux [ pkg-config ];
 
   buildInputs = lib.optionals stdenv.isLinux [ openssl ]
-    ++ lib.optionals stdenv.isDarwin [
-      curl
-      darwin.apple_sdk.frameworks.Security
-      darwin.apple_sdk.frameworks.CoreServices
-      darwin.apple_sdk.frameworks.CoreFoundation
-    ];
+    ++ lib.optionals stdenv.isDarwin [ curl CoreFoundation CoreServices Security ];
 
   # tries to use "/homeless-shelter" and fails
   doCheck = false;