summary refs log tree commit diff
path: root/pkgs/development/tools/rust
diff options
context:
space:
mode:
authorhappysalada <raphael@megzari.com>2021-06-18 22:54:59 +0900
committerhappysalada <raphael@megzari.com>2021-06-18 22:54:59 +0900
commit8568807d54034aebceafa37c6b09b95dd6948b1e (patch)
treeac749c44d014b6ddfeaf99e4440ad0ea30afec17 /pkgs/development/tools/rust
parent8ab24509e20fe777f87d0941c19404e897dc10fe (diff)
downloadnixpkgs-8568807d54034aebceafa37c6b09b95dd6948b1e.tar
nixpkgs-8568807d54034aebceafa37c6b09b95dd6948b1e.tar.gz
nixpkgs-8568807d54034aebceafa37c6b09b95dd6948b1e.tar.bz2
nixpkgs-8568807d54034aebceafa37c6b09b95dd6948b1e.tar.lz
nixpkgs-8568807d54034aebceafa37c6b09b95dd6948b1e.tar.xz
nixpkgs-8568807d54034aebceafa37c6b09b95dd6948b1e.tar.zst
nixpkgs-8568807d54034aebceafa37c6b09b95dd6948b1e.zip
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;