9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
35 lines
884 B
Nix
35 lines
884 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, stdenv
|
|
, darwin
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-mutants";
|
|
version = "23.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sourcefrog";
|
|
repo = "cargo-mutants";
|
|
rev = "cargo-mutants-${version}";
|
|
hash = "sha256-qgsranCZnorEZuCgUj0LmkL0dcfarWa0q/9Uupsf4jQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-BW9itNgVOiaKMzaRl3d60BIV5V82+5D0+QKSnGcvFnI=";
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk.frameworks.SystemConfiguration
|
|
];
|
|
|
|
# too many tests require internet access
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "A mutation testing tool for Rust";
|
|
homepage = "https://github.com/sourcefrog/cargo-mutants";
|
|
changelog = "https://github.com/sourcefrog/cargo-mutants/releases/tag/${src.rev}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|