summary refs log tree commit diff
path: root/pkgs/development/tools/rust
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2021-06-18 18:47:04 +0200
committerGitHub <noreply@github.com>2021-06-18 18:47:04 +0200
commitb2db3cb6f1e9341411e9988e6968810c268fb2e6 (patch)
treed9888c51dc0ac1499fdbdac8257a39377ebff3f8 /pkgs/development/tools/rust
parentfddaadcdf45a641fff892e5664aab9da4d1f237d (diff)
parent8568807d54034aebceafa37c6b09b95dd6948b1e (diff)
downloadnixpkgs-b2db3cb6f1e9341411e9988e6968810c268fb2e6.tar
nixpkgs-b2db3cb6f1e9341411e9988e6968810c268fb2e6.tar.gz
nixpkgs-b2db3cb6f1e9341411e9988e6968810c268fb2e6.tar.bz2
nixpkgs-b2db3cb6f1e9341411e9988e6968810c268fb2e6.tar.lz
nixpkgs-b2db3cb6f1e9341411e9988e6968810c268fb2e6.tar.xz
nixpkgs-b2db3cb6f1e9341411e9988e6968810c268fb2e6.tar.zst
nixpkgs-b2db3cb6f1e9341411e9988e6968810c268fb2e6.zip
Merge pull request #127352 from happysalada/cargo-udeps_update
cargo-udeps: 0.1.21 -> 0.1.22
Diffstat (limited to 'pkgs/development/tools/rust')
-rw-r--r--pkgs/development/tools/rust/cargo-udeps/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/tools/rust/cargo-udeps/default.nix b/pkgs/development/tools/rust/cargo-udeps/default.nix
index 968a6ce457f..0a76ae0202c 100644
--- a/pkgs/development/tools/rust/cargo-udeps/default.nix
+++ b/pkgs/development/tools/rust/cargo-udeps/default.nix
@@ -1,22 +1,23 @@
-{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, openssl, CoreServices, Security, libiconv }:
+{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, openssl, CoreServices, Security, libiconv, SystemConfiguration }:
 
 rustPlatform.buildRustPackage rec {
   pname = "cargo-udeps";
-  version = "0.1.21";
+  version = "0.1.22";
 
   src = fetchFromGitHub {
     owner = "est31";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-Voei7j3WRDu70NkcJvjqPJ4ikOUupOhvFNEHHRyF6/Q=";
+    sha256 = "sha256-z92q0uwL832Ph7sTpWpaa8e9Xrik9wnjQ7LBy/hY8KE=";
   };
 
-  cargoSha256 = "sha256-zMya7bEehNKIfwQtJ252sflg06P4Ra8/lgBjn4UUqRg=";
+  cargoSha256 = "sha256-4HguNyPIjpFqa80dDVFgXDK7pHOuFJdpFNxLARXxT2g=";
 
   nativeBuildInputs = [ pkg-config ];
 
+  # TODO figure out how to use provided curl instead of compiling curl from curl-sys
   buildInputs = [ openssl ]
-    ++ lib.optionals stdenv.isDarwin [ CoreServices Security libiconv ];
+    ++ lib.optionals stdenv.isDarwin [ CoreServices Security libiconv SystemConfiguration ];
 
   # Requires network access
   doCheck = false;