biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / twiggy / default.nix
blob25d8ab244d9ef9e9c808abbb6508a93637087371
1 { lib
2 , fetchCrate
3 , rustPlatform }:
5 rustPlatform.buildRustPackage rec {
6   pname = "twiggy";
7   version = "0.7.0";
9   src = fetchCrate {
10     inherit pname version;
11     sha256 = "sha256-NbtS7A5Zl8634Q3xyjVzNraNszjt1uIXqmctArfnqkk=";
12   };
14   cargoSha256 = "sha256-94pfhVZ0CNMn+lCl5O+wOyE+D6fVXbH4NAPx92nMNbM=";
16   meta = with lib; {
17     homepage = "https://rustwasm.github.io/twiggy/";
18     description = "A code size profiler for Wasm";
19     mainProgram = "twiggy";
20     license = with licenses; [ asl20 mit ];
21     maintainers = with maintainers; [ lucperkins ];
22   };