nixpkgs/pkgs/by-name/tw/twiggy/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
566 B
Nix
Raw Normal View History

2022-08-01 17:42:15 +02:00
{ 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";
2022-08-01 17:42:15 +02:00
license = with licenses; [ asl20 mit ];
maintainers = with maintainers; [ lucperkins ];
};
}