about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2024-02-11 23:31:26 +0100
committersternenseemann <sternenseemann@systemli.org>2024-02-29 18:54:37 +0100
commit4f4287521b83d236c0ae6c6032220c22c8a96bdd (patch)
tree15329c3fdc6bc40af4cbb4f72ad5c712beac414b /pkgs
parente2c7a97fac1dbd550173587a74510ca9d86fc1f9 (diff)
projectable: unpin libgit2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/file-managers/projectable/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/file-managers/projectable/default.nix b/pkgs/applications/file-managers/projectable/default.nix
index 8f2a131ce7c9d..c5b6009bf22f2 100644
--- a/pkgs/applications/file-managers/projectable/default.nix
+++ b/pkgs/applications/file-managers/projectable/default.nix
@@ -2,7 +2,7 @@
 , rustPlatform
 , fetchFromGitHub
 , pkg-config
-, libgit2_1_5
+, libgit2
 , openssl
 , zlib
 , stdenv
@@ -27,7 +27,7 @@ rustPlatform.buildRustPackage rec {
   ];
 
   buildInputs = [
-    libgit2_1_5
+    libgit2
     openssl
     zlib
   ] ++ lib.optionals stdenv.isDarwin [
@@ -35,6 +35,7 @@ rustPlatform.buildRustPackage rec {
   ];
 
   env = {
+    LIBGIT2_NO_VENDOR = 1;
     OPENSSL_NO_VENDOR = true;
   };