forked from mirrors/nixpkgs
Merge pull request #138805 from figsoda/cargo-all-features
cargo-all-features: init at 1.6.0
This commit is contained in:
commit
de72f88d37
22
pkgs/development/tools/rust/cargo-all-features/default.nix
Normal file
22
pkgs/development/tools/rust/cargo-all-features/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, rustPlatform, fetchFromGitHub }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "cargo-all-features";
|
||||
version = "1.6.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "frewsxcv";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1pdr34ygc0qmh0dyrw1qcrh1vgg9jv9lm6ypl3fgjzz7npdj1dw4";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-BsRJo55gYT8OkDUBepWq48sW7QPt5OZkm8RR9f7HqZY=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Cargo subcommand to build and test all feature flag combinations";
|
||||
homepage = "https://github.com/frewsxcv/cargo-all-features";
|
||||
license = with licenses; [ asl20 /* or */ mit ];
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
};
|
||||
}
|
|
@ -12367,6 +12367,7 @@ with pkgs;
|
|||
defaultCrateOverrides = callPackage ../build-support/rust/default-crate-overrides.nix { };
|
||||
|
||||
cargo-about = callPackage ../tools/package-management/cargo-about { };
|
||||
cargo-all-features = callPackage ../development/tools/rust/cargo-all-features { };
|
||||
cargo-audit = callPackage ../tools/package-management/cargo-audit {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue