fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / ca / cargo-bloat / package.nix
blob90e307891cc3f210cb4b9c910ead68675e0d096f
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "cargo-bloat";
9   version = "0.12.1";
11   src = fetchFromGitHub {
12     owner = "RazrFalcon";
13     repo = pname;
14     rev = "v${version}";
15     hash = "sha256-B71VX7cJe1giOLmk3cQE8Zxr7fKGyQkoXRuM+NzBcb8=";
16   };
18   cargoHash = "sha256-BBFLyMx1OPT2XAM6pofs2kV/3n3FrNu0Jkyr/Y3smnI=";
20   meta = with lib; {
21     description = "Tool and Cargo subcommand that helps you find out what takes most of the space in your executable";
22     homepage = "https://github.com/RazrFalcon/cargo-bloat";
23     license = licenses.mit;
24     platforms = platforms.unix;
25     maintainers = with maintainers; [
26       xrelkd
27       matthiasbeyer
28     ];
29     mainProgram = "cargo-bloat";
30   };