cargo-all-features: init at 1.6.0
This commit is contained in:
parent
e80237d8f4
commit
065f620184
2 changed files with 23 additions and 0 deletions
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -12356,6 +12356,7 @@ with pkgs;
|
||||||
defaultCrateOverrides = callPackage ../build-support/rust/default-crate-overrides.nix { };
|
defaultCrateOverrides = callPackage ../build-support/rust/default-crate-overrides.nix { };
|
||||||
|
|
||||||
cargo-about = callPackage ../tools/package-management/cargo-about { };
|
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 {
|
cargo-audit = callPackage ../tools/package-management/cargo-audit {
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue