lol
1{ buildGoModule
2, lib
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "wasmserve";
8 version = "1.0.0";
9
10 src = fetchFromGitHub {
11 owner = "hajimehoshi";
12 repo = "wasmserve";
13 rev = "v${version}";
14 hash = "sha256-KlCbUre6yIorE1ZM++Rto8vgwVGsC1wZj1xCd3AwQy0=";
15 };
16
17 vendorHash = null;
18
19 meta = with lib; {
20 description = "An HTTP server for testing Wasm";
21 homepage = "https://github.com/hajimehoshi/wasmserve";
22 license = licenses.asl20;
23 maintainers = with maintainers; [ kirillrdy ];
24 };
25}