2022-12-17 10:02:37 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub, stdenv, darwin }:
|
2021-06-28 23:13:55 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cargo-modules";
|
2022-12-17 10:02:37 +00:00
|
|
|
version = "0.7.1";
|
2021-06-28 23:13:55 +00:00
|
|
|
|
2022-12-17 10:02:37 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "regexident";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "sha256-vMmbed2UOe/N8V7LbvYm7BbOOHD69qaizkYf66VCZMs=";
|
2021-06-28 23:13:55 +00:00
|
|
|
};
|
|
|
|
|
2022-12-17 10:02:37 +00:00
|
|
|
cargoSha256 = "sha256-xo3EUDWoE1OFTaA9y3ymGA/l2fwNqnPBLpNc8xyjasY=";
|
2021-12-06 16:07:01 +00:00
|
|
|
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
2022-12-17 10:02:37 +00:00
|
|
|
darwin.apple_sdk.frameworks.CoreServices
|
2021-12-06 16:07:01 +00:00
|
|
|
];
|
2021-06-28 23:13:55 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A cargo plugin for showing a tree-like overview of a crate's modules";
|
|
|
|
homepage = "https://github.com/regexident/cargo-modules";
|
2022-12-17 10:02:37 +00:00
|
|
|
changelog = "https://github.com/regexident/cargo-modules/blob/${version}/CHANGELOG.md";
|
2021-06-28 23:13:55 +00:00
|
|
|
license = with licenses; [ mpl20 ];
|
2021-12-06 16:07:01 +00:00
|
|
|
maintainers = with maintainers; [ figsoda rvarago ];
|
2021-06-28 23:13:55 +00:00
|
|
|
};
|
|
|
|
}
|