cargo-unused-features: unpin libgit2

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

View file

@ -3,7 +3,7 @@
, fetchCrate
, curl
, pkg-config
, libgit2_1_5
, libgit2
, openssl
, stdenv
, darwin
@ -27,13 +27,17 @@ rustPlatform.buildRustPackage rec {
buildInputs = [
curl
libgit2_1_5
libgit2
openssl
] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.CoreFoundation
darwin.apple_sdk.frameworks.Security
];
env = {
LIBGIT2_NO_VENDOR = 1;
};
meta = with lib; {
description = "A tool to find potential unused enabled feature flags and prune them";
homepage = "https://github.com/timonpost/cargo-unused-features";