Merge pull request #228659 from kirillrdy/wasmserve

This commit is contained in:
Janik 2023-08-04 00:26:12 +02:00 committed by GitHub
commit 91314f5d20
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ buildGoModule
, lib
, fetchFromGitHub
}:
buildGoModule rec {
pname = "wasmserve";
version = "1.0.0";
src = fetchFromGitHub {
owner = "hajimehoshi";
repo = "wasmserve";
rev = "v${version}";
hash = "sha256-KlCbUre6yIorE1ZM++Rto8vgwVGsC1wZj1xCd3AwQy0=";
};
vendorHash = null;
meta = with lib; {
description = "An HTTP server for testing Wasm";
homepage = "https://github.com/hajimehoshi/wasmserve";
license = licenses.asl20;
maintainers = with maintainers; [ kirillrdy ];
};
}

View file

@ -14209,6 +14209,8 @@ with pkgs;
wasmi = callPackage ../development/tools/wasmi { };
wasmserve = callPackage ../development/tools/wasmserve {};
welkin = callPackage ../tools/graphics/welkin { };
wemux = callPackage ../tools/misc/wemux { };