evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ca / cargo-hack / package.nix
blob923867851b5dc0c888a6c89ec9d6d014c3d51fd4
1 { lib, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "cargo-hack";
5   version = "0.6.32";
7   src = fetchCrate {
8     inherit pname version;
9     hash = "sha256-XjubvjK+FySm0nqlzFsRhDQOI9M0enonwwPhZ/KFFlk=";
10   };
12   cargoHash = "sha256-sWXeGohH9iLMkmBgNjSfg25eDzZHSzWrOGgccuWPBLM=";
14   # some necessary files are absent in the crate version
15   doCheck = false;
17   meta = with lib; {
18     description = "Cargo subcommand to provide various options useful for testing and continuous integration";
19     mainProgram = "cargo-hack";
20     homepage = "https://github.com/taiki-e/cargo-hack";
21     changelog = "https://github.com/taiki-e/cargo-hack/blob/v${version}/CHANGELOG.md";
22     license = with licenses; [ asl20 /* or */ mit ];
23     maintainers = with maintainers; [ figsoda ];
24   };