evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ca / cargo-bloat / package.nix
blob093f6db75f961702b5626827e1eaf8148bd4a3de
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "cargo-bloat";
5   version = "0.12.1";
7   src = fetchFromGitHub {
8     owner = "RazrFalcon";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-B71VX7cJe1giOLmk3cQE8Zxr7fKGyQkoXRuM+NzBcb8=";
12   };
14   cargoHash = "sha256-BBFLyMx1OPT2XAM6pofs2kV/3n3FrNu0Jkyr/Y3smnI=";
16   meta = with lib; {
17     description = "Tool and Cargo subcommand that helps you find out what takes most of the space in your executable";
18     homepage = "https://github.com/RazrFalcon/cargo-bloat";
19     license = licenses.mit;
20     platforms = platforms.unix;
21     maintainers = with maintainers; [ xrelkd matthiasbeyer ];
22     mainProgram = "cargo-bloat";
23   };