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