Merge pull request #194220 from figsoda/cargo-lock

cargo-lock: init at 8.0.2

authored by figsoda and committed by GitHub 85163270 ef157b4b

+24
+23
pkgs/development/tools/rust/cargo-lock/default.nix
··· 1 + { lib, rustPlatform, fetchCrate }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "cargo-lock"; 5 + version = "8.0.2"; 6 + 7 + src = fetchCrate { 8 + inherit pname version; 9 + sha256 = "sha256-I64LXY8e8ztICS6AKfrNr/7Ntap7ESjindNWEeny6ZA="; 10 + }; 11 + 12 + cargoSha256 = "sha256-Yy7KQvPeyw5YSzUmoxUJAueVzkfQqDPE1j2+L+KifpU="; 13 + 14 + buildFeatures = [ "cli" ]; 15 + 16 + meta = with lib; { 17 + description = "Self-contained Cargo.lock parser with graph analysis"; 18 + homepage = "https://github.com/rustsec/rustsec/tree/main/cargo-lock"; 19 + changelog = "https://github.com/rustsec/rustsec/blob/cargo-lock/v${version}/cargo-lock/CHANGELOG.md"; 20 + license = with licenses; [ asl20 /* or */ mit ]; 21 + maintainers = with maintainers; [ figsoda ]; 22 + }; 23 + }
+1
pkgs/top-level/all-packages.nix
··· 14698 14698 cargo-hack = callPackage ../development/tools/rust/cargo-hack { }; 14699 14699 cargo-license = callPackage ../development/tools/rust/cargo-license { }; 14700 14700 cargo-llvm-lines = callPackage ../development/tools/rust/cargo-llvm-lines { }; 14701 + cargo-lock = callPackage ../development/tools/rust/cargo-lock { }; 14701 14702 cargo-outdated = callPackage ../development/tools/rust/cargo-outdated { 14702 14703 inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; 14703 14704 };