biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / cargo-lock / default.nix
blob6c1f35b1244d65000966e3260f3734c7aa354d86
1 { lib, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "cargo-lock";
5   version = "9.0.0";
7   src = fetchCrate {
8     inherit pname version;
9     hash = "sha256-SMxM66qo3Xmst+SVXu4LYZ0Zzn15wqVVNqqHzAkip/s=";
10   };
12   cargoHash = "sha256-wUp4zBY64MvD4anGlVsJrI3pyfwVSQGnn6YuweTeYNk=";
14   buildFeatures = [ "cli" ];
16   meta = with lib; {
17     description = "Self-contained Cargo.lock parser with graph analysis";
18     mainProgram = "cargo-lock";
19     homepage = "https://github.com/rustsec/rustsec/tree/main/cargo-lock";
20     changelog = "https://github.com/rustsec/rustsec/blob/cargo-lock/v${version}/cargo-lock/CHANGELOG.md";
21     license = with licenses; [ asl20 /* or */ mit ];
22     maintainers = with maintainers; [ figsoda matthiasbeyer ];
23   };