mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
24 lines
687 B
Nix
24 lines
687 B
Nix
{ stdenv, lib, rustPlatform, fetchFromGitHub, Security }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-inspect";
|
|
version = "0.10.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mre";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "026vc8d0jkc1d7dlp3ldmwks7svpvqzl0k5niri8a12cl5w5b9hj";
|
|
};
|
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
cargoSha256 = "1ryi5qi1zz2yljyj4rn84q9zkzafc9w4nw3zc01hlzpnb1sjw5sw";
|
|
|
|
meta = with lib; {
|
|
description = "See what Rust is doing behind the curtains";
|
|
homepage = "https://github.com/mre/cargo-inspect";
|
|
license = with licenses; [ mit asl20 ];
|
|
maintainers = with maintainers; [ minijackson ];
|
|
};
|
|
}
|