Merge pull request #332785 from alyssais/cargo-information-0.7.0

cargo-information: 0.6.0 -> 0.7.0
This commit is contained in:
Emily 2024-08-09 22:08:31 +01:00 committed by GitHub
commit 5a4c4d29d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 254 additions and 190 deletions

File diff suppressed because it is too large Load Diff

View File

@ -4,6 +4,7 @@
, makeWrapper
, pkg-config
, openssl
, curl
, rustc
, stdenv
, darwin
@ -11,19 +12,19 @@
rustPlatform.buildRustPackage rec {
pname = "cargo-information";
version = "0.6.0";
version = "0.7.0";
src = fetchFromGitHub {
owner = "hi-rustin";
repo = "cargo-information";
rev = "v${version}";
hash = "sha256-5F8O8M8cz7sdXtqGYuDIeTolovZjx2BLEBCZuBIb9YA=";
hash = "sha256-gu1t0jMBJ+mJIVMGy1JlabzcOT4lbmTvO/VQfxLLsWM=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"cargo-test-macro-0.1.0" = "sha256-4u3Ium+WYBdyocuehDulRgUOR74JC6AUI2+A5xlnUGw=";
"cargo-test-macro-0.2.1" = "sha256-3sergm2T4VXT41ERCLL7p9+pJwIKzT54qdla8V58Psk=";
};
};
@ -43,6 +44,7 @@ rustPlatform.buildRustPackage rec {
buildInputs = [
openssl
curl
] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
];