lol
0
fork

Configure Feed

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

wasmer-pack: init at 0.7.1

https://github.com/wasmerio/wasmer-pack

figsoda 4395d469 a5ca6a0f

+39
+37
pkgs/development/tools/misc/wasmer-pack/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , stdenv 5 + , darwin 6 + }: 7 + 8 + rustPlatform.buildRustPackage rec { 9 + pname = "wasmer-pack"; 10 + version = "0.7.1"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "wasmerio"; 14 + repo = "wasmer-pack"; 15 + rev = "v${version}"; 16 + hash = "sha256-+wqgYkdkuhPFkJBdQLnUKAGmUfGBU9mBfMRNBFmiT4E="; 17 + }; 18 + 19 + cargoHash = "sha256-nyhjwEZyT8IEb0pTbou/EtN47gehge3fUCQVPs2TkIY="; 20 + 21 + buildInputs = lib.optionals stdenv.isDarwin [ 22 + darwin.apple_sdk.frameworks.Security 23 + ]; 24 + 25 + cargoBuildFlags = [ "-p=wasmer-pack-cli" ]; 26 + 27 + # requires internet access 28 + doCheck = false; 29 + 30 + meta = with lib; { 31 + description = "Import your WebAssembly code just like any other dependency"; 32 + homepage = "https://github.com/wasmerio/wasmer-pack"; 33 + changelog = "https://github.com/wasmerio/wasmer-pack/blob/${src.rev}/CHANGELOG.md"; 34 + license = licenses.mit; 35 + maintainers = with maintainers; [ figsoda ]; 36 + }; 37 + }
+2
pkgs/top-level/all-packages.nix
··· 19913 19913 19914 19914 wails = callPackage ../development/tools/wails { }; 19915 19915 19916 + wasmer-pack = callPackage ../development/tools/misc/wasmer-pack { }; 19917 + 19916 19918 whatsapp-for-linux = callPackage ../applications/networking/instant-messengers/whatsapp-for-linux { }; 19917 19919 19918 19920 whatstyle = callPackage ../development/tools/misc/whatstyle {