about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/twiggy/default.nix
blob: 25d8ab244d9ef9e9c808abbb6508a93637087371 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib
, fetchCrate
, rustPlatform }:

rustPlatform.buildRustPackage rec {
  pname = "twiggy";
  version = "0.7.0";

  src = fetchCrate {
    inherit pname version;
    sha256 = "sha256-NbtS7A5Zl8634Q3xyjVzNraNszjt1uIXqmctArfnqkk=";
  };

  cargoSha256 = "sha256-94pfhVZ0CNMn+lCl5O+wOyE+D6fVXbH4NAPx92nMNbM=";

  meta = with lib; {
    homepage = "https://rustwasm.github.io/twiggy/";
    description = "A code size profiler for Wasm";
    mainProgram = "twiggy";
    license = with licenses; [ asl20 mit ];
    maintainers = with maintainers; [ lucperkins ];
  };
}