Unverified Commit 91314f5d authored by Janik's avatar Janik Committed by GitHub
Browse files

Merge pull request #228659 from kirillrdy/wasmserve

parents 48878dfe 7079aa85
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };