depot/third_party/nixpkgs/pkgs/development/tools/wasmserve/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

26 lines
557 B
Nix

{ 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";
mainProgram = "wasmserve";
homepage = "https://github.com/hajimehoshi/wasmserve";
license = licenses.asl20;
maintainers = with maintainers; [ kirillrdy ];
};
}