9 rustPlatform.buildRustPackage rec {
10 pname = "cargo-limit";
13 src = fetchFromGitHub {
14 owner = "alopatindev";
17 sha256 = "sha256-joWDB9fhCsYVZFZdr+Gfm4JaRlm5kj+CHp34Sx5iQYk=";
20 cargoSha256 = "sha256-dwqbG0UFeUQHa0K98ebHfjbcQuQOhK2s6ZxAT6r0cik=";
22 buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
25 updateScript = nix-update-script { };
29 description = "Cargo subcommand \"limit\": reduces the noise of compiler messages";
30 homepage = "https://github.com/alopatindev/cargo-limit";
31 license = with licenses; [ asl20 /* or */ mit ];
32 maintainers = with maintainers; [ otavio matthiasbeyer ];