7 rustPlatform.buildRustPackage rec {
8 pname = "cargo-mutants";
11 src = fetchFromGitHub {
13 repo = "cargo-mutants";
15 hash = "sha256-JwRMXFXYXPg/grFqeGIcWpDPI5/wFIldx4ORE8ODyk8=";
18 cargoHash = "sha256-8sAyQ858brL6EFW8gRAPrlpSPW7lYrd4dFOyUDOnIaU=";
20 # too many tests require internet access
24 description = "Mutation testing tool for Rust";
25 mainProgram = "cargo-mutants";
26 homepage = "https://github.com/sourcefrog/cargo-mutants";
27 changelog = "https://github.com/sourcefrog/cargo-mutants/releases/tag/${src.rev}";
28 license = licenses.mit;
29 maintainers = with maintainers; [ figsoda ];