92b3d6365d
GitOrigin-RevId: 412b9917cea092f3d39f9cd5dead4effd5bc4053
24 lines
774 B
Nix
24 lines
774 B
Nix
{ lib, rustPlatform, fetchCrate }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-hack";
|
|
version = "0.5.22";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
sha256 = "sha256-TuHCKitlCCV//VBi514IMdcscsBc4yibfdsCO/nmisU=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-2tF6553SGbBrGkTznk3zWMweQjks+Z699HE1l0DVYec=";
|
|
|
|
# some necessary files are absent in the crate version
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Cargo subcommand to provide various options useful for testing and continuous integration";
|
|
homepage = "https://github.com/taiki-e/cargo-hack";
|
|
changelog = "https://github.com/taiki-e/cargo-hack/blob/v${version}/CHANGELOG.md";
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|