mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
23 lines
560 B
Nix
23 lines
560 B
Nix
{ lib
|
|
, fetchCrate
|
|
, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "twiggy";
|
|
version = "0.7.0";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-NbtS7A5Zl8634Q3xyjVzNraNszjt1uIXqmctArfnqkk=";
|
|
};
|
|
|
|
cargoHash = "sha256-94pfhVZ0CNMn+lCl5O+wOyE+D6fVXbH4NAPx92nMNbM=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://rustwasm.github.io/twiggy/";
|
|
description = "Code size profiler for Wasm";
|
|
mainProgram = "twiggy";
|
|
license = with licenses; [ asl20 mit ];
|
|
maintainers = with maintainers; [ lucperkins ];
|
|
};
|
|
}
|