about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-07-14 19:56:53 -0600
committerGitHub <noreply@github.com>2023-07-14 19:56:53 -0600
commit156f477182147286a85ebf7ffb8a6a4d5ce931c3 (patch)
tree93b915cf292175ae121ea32ec4db35634e68b839
parent5829ef37cc07aa3c7da58654a7f7f2e8bc2012ea (diff)
parent4ffb691f8f6abeb9dedee64489f1cfc4ee88a672 (diff)
Merge pull request #243498 from figsoda/registry
cargo-local-registry: 0.2.3 -> 0.2.5
-rw-r--r--pkgs/development/tools/rust/cargo-local-registry/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/tools/rust/cargo-local-registry/default.nix b/pkgs/development/tools/rust/cargo-local-registry/default.nix
index d4e35f2bb9768..782610812c5e1 100644
--- a/pkgs/development/tools/rust/cargo-local-registry/default.nix
+++ b/pkgs/development/tools/rust/cargo-local-registry/default.nix
@@ -1,8 +1,9 @@
 { lib
 , rustPlatform
 , fetchFromGitHub
-, pkg-config
 , curl
+, pkg-config
+, libgit2
 , openssl
 , zlib
 , stdenv
@@ -11,16 +12,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "cargo-local-registry";
-  version = "0.2.3";
+  version = "0.2.5";
 
   src = fetchFromGitHub {
     owner = "dhovart";
     repo = "cargo-local-registry";
     rev = version;
-    hash = "sha256-nxLqWtZl3ZF/iodYsQCYQ/prjp80QMzJLLp31q7d2vs=";
+    hash = "sha256-3xp0LLk3MpL54PMGLHTAKcsM6fwMxB8LOdN0Xcap/xA=";
   };
 
-  cargoHash = "sha256-k94jzMdZDWpxSHVEZh1Qsv8OuUKuqU2YNBN1Mqj8HJA=";
+  cargoHash = "sha256-HknfcJfOQ40ecpKM8GGbquRxLQTEGyRFkwXhsjrl8FA=";
 
   nativeBuildInputs = [
     curl
@@ -29,6 +30,7 @@ rustPlatform.buildRustPackage rec {
 
   buildInputs = [
     curl
+    libgit2
     openssl
     zlib
   ] ++ lib.optionals stdenv.isDarwin [