cargo-ui: unpin libgit2

This commit is contained in:
Sandro Jäckel 2024-02-11 23:28:31 +01:00 committed by sternenseemann
parent 2159ca14d8
commit e2c7a97fac

View File

@ -2,7 +2,7 @@
, rustPlatform
, fetchCrate
, pkg-config
, libgit2_1_5
, libgit2
, openssl
, stdenv
, expat
@ -28,7 +28,7 @@ rustPlatform.buildRustPackage rec {
];
buildInputs = [
libgit2_1_5
libgit2
openssl
] ++ lib.optionals stdenv.isLinux [
expat
@ -48,6 +48,10 @@ rustPlatform.buildRustPackage rec {
--add-rpath ${lib.makeLibraryPath [ fontconfig libGL ]}
'';
env = {
LIBGIT2_NO_VENDOR = 1;
};
meta = with lib; {
description = "A GUI for Cargo";
homepage = "https://github.com/slint-ui/cargo-ui";