ca5ab3a501
GitOrigin-RevId: 4a01ca36d6bfc133bc617e661916a81327c9bbc8
27 lines
804 B
Nix
27 lines
804 B
Nix
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, Security }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-whatfeatures";
|
|
version = "0.9.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "museun";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-tfaaYYdCe9PthVOtoRbinxItxg9zK18sm0wk5tpdsJU=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-x5BStIb+0CYJZjO6xDmCVHjSuR2vilH4YLYuOYoB/JY=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ openssl ]
|
|
++ lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
meta = with lib; {
|
|
description = "A simple cargo plugin to get a list of features for a specific crate";
|
|
homepage = "https://github.com/museun/cargo-whatfeatures";
|
|
license = with licenses; [ mit asl20 ];
|
|
maintainers = with maintainers; [ ivan-babrou ];
|
|
};
|
|
}
|