biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / cargo-all-features / default.nix
blobb4ba6b52afad9f02cd1f5599557a9d19c093b217
1 { lib
2 , rustPlatform
3 , fetchCrate
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "cargo-all-features";
8   version = "1.10.0";
10   src = fetchCrate {
11     inherit pname version;
12     hash = "sha256-/w3Xd7PXUNtqzRYmUqJtth+GDuXSnsk1NiYCTYsHuAQ=";
13   };
15   cargoHash = "sha256-d69jj2FGptjndJG1tq3Fb/8F3kuFXN5otsYGhXYhhZg=";
17   meta = with lib; {
18     description = "A Cargo subcommand to build and test all feature flag combinations";
19     homepage = "https://github.com/frewsxcv/cargo-all-features";
20     license = with licenses; [ asl20 /* or */ mit ];
21     maintainers = with maintainers; [ figsoda matthiasbeyer ];
22   };