xcursor-pro: init at 2.0.2 (#335188)
[NixPkgs.git] / pkgs / by-name / ca / cargo-lock / package.nix
blob8c1b74ccabc74303d0529c4d9e5eae872dea4521
2   lib,
3   rustPlatform,
4   fetchCrate,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "cargo-lock";
9   version = "10.0.1";
11   src = fetchCrate {
12     inherit pname version;
13     hash = "sha256-Ui/Z4syhSxemV1R815R+yytDwN2YJBcHGscUYUp/0zE=";
14   };
16   cargoHash = "sha256-5Hg0y723wjV13rdEExK2II7EPpzAR29ZCqVgOeuJpO0=";
18   buildFeatures = [ "cli" ];
20   meta = with lib; {
21     description = "Self-contained Cargo.lock parser with graph analysis";
22     mainProgram = "cargo-lock";
23     homepage = "https://github.com/rustsec/rustsec/tree/main/cargo-lock";
24     changelog = "https://github.com/rustsec/rustsec/blob/cargo-lock/v${version}/cargo-lock/CHANGELOG.md";
25     license = with licenses; [
26       asl20 # or
27       mit
28     ];
29     maintainers = with maintainers; [
30       figsoda
31       matthiasbeyer
32     ];
33   };