pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / by-name / tw / twiggy / package.nix
blobdd34321c81e67935af78cc317f7e72c894600799
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     hash = "sha256-NbtS7A5Zl8634Q3xyjVzNraNszjt1uIXqmctArfnqkk=";
12   };
14   cargoHash = "sha256-94pfhVZ0CNMn+lCl5O+wOyE+D6fVXbH4NAPx92nMNbM=";
16   meta = with lib; {
17     homepage = "https://rustwasm.github.io/twiggy/";
18     description = "Code size profiler for Wasm";
19     mainProgram = "twiggy";
20     license = with licenses; [ asl20 mit ];
21     maintainers = with maintainers; [ lucperkins ];
22   };