lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 33 lines 835 B view raw
1{ 2 lib, 3 rustPlatform, 4 fetchFromGitHub, 5}: 6 7rustPlatform.buildRustPackage rec { 8 pname = "wasmer-pack"; 9 version = "0.7.1"; 10 11 src = fetchFromGitHub { 12 owner = "wasmerio"; 13 repo = "wasmer-pack"; 14 rev = "v${version}"; 15 hash = "sha256-+wqgYkdkuhPFkJBdQLnUKAGmUfGBU9mBfMRNBFmiT4E="; 16 }; 17 18 cargoHash = "sha256-PZudXmdPz6fG7NDC/yN7qG+RQFSzNynXo6SpYJEku9A="; 19 20 cargoBuildFlags = [ "-p=wasmer-pack-cli" ]; 21 22 # requires internet access 23 doCheck = false; 24 25 meta = with lib; { 26 description = "Import your WebAssembly code just like any other dependency"; 27 mainProgram = "wasmer-pack"; 28 homepage = "https://github.com/wasmerio/wasmer-pack"; 29 changelog = "https://github.com/wasmerio/wasmer-pack/blob/${src.rev}/CHANGELOG.md"; 30 license = licenses.mit; 31 maintainers = with maintainers; [ figsoda ]; 32 }; 33}