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";
|
2023-02-02 18:25:31 +00:00
|
|
|
version = "0.7.5";
|
2021-06-28 23:13:55 +00:00
|
|
|
|
2022-12-17 10:02:37 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "regexident";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2023-02-02 18:25:31 +00:00
|
|
|
sha256 = "sha256-G9ResHOBEqnKsMXVbr8q1rvywFI8LJcb8gR7hMTI0p4=";
|
2021-06-28 23:13:55 +00:00
|
|
|
};
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
cargoSha256 = "sha256-p6mq+P9ntlhjMPHpcwXV9XBlAX6R63Iqastl9ZHI8Vs=";
|
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
|
|
|
};
|
|
|
|
}
|