7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
28 lines
868 B
Nix
28 lines
868 B
Nix
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, Security }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-whatfeatures";
|
|
version = "0.9.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "museun";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-YJ08oBTn9OwovnTOuuc1OuVsQp+/TPO3vcY4ybJ26Ms=";
|
|
};
|
|
|
|
cargoHash = "sha256-Zi9FCNBxQ9S4S9k6hoMUOixTs6PJyxmgTB+ArrX8oBE=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ openssl ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ Security ];
|
|
|
|
meta = with lib; {
|
|
description = "Simple cargo plugin to get a list of features for a specific crate";
|
|
mainProgram = "cargo-whatfeatures";
|
|
homepage = "https://github.com/museun/cargo-whatfeatures";
|
|
license = with licenses; [ mit asl20 ];
|
|
maintainers = with maintainers; [ ivan-babrou matthiasbeyer ];
|
|
};
|
|
}
|