twiggy: init at 0.7.0

This commit is contained in:
Luc Perkins 2022-08-01 17:42:15 +02:00
parent 84cc06af6f
commit 6213fe5f7f
No known key found for this signature in database
GPG Key ID: 4F102D0C16E232F2
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ 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";
license = with licenses; [ asl20 mit ];
maintainers = with maintainers; [ lucperkins ];
};
}

View File

@ -35603,6 +35603,8 @@ with pkgs;
tvheadend = callPackage ../servers/tvheadend { };
twiggy = callPackage ../development/tools/twiggy { };
uacme = callPackage ../tools/admin/uacme { };
ums = callPackage ../servers/ums { };