wasmserve: init at 1.0.0
This commit is contained in:
parent
9998bf752c
commit
7079aa8566
2 changed files with 27 additions and 0 deletions
25
pkgs/development/tools/wasmserve/default.nix
Normal file
25
pkgs/development/tools/wasmserve/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -14162,6 +14162,8 @@ with pkgs;
|
|||
|
||||
wasmi = callPackage ../development/tools/wasmi { };
|
||||
|
||||
wasmserve = callPackage ../development/tools/wasmserve {};
|
||||
|
||||
welkin = callPackage ../tools/graphics/welkin { };
|
||||
|
||||
wemux = callPackage ../tools/misc/wemux { };
|
||||
|
|
Loading…
Reference in a new issue