52 lines
1 KiB
Nix
52 lines
1 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
testers,
|
|
wazero,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "wazero";
|
|
version = "1.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tetratelabs";
|
|
repo = "wazero";
|
|
rev = "v${version}";
|
|
hash = "sha256-yxnHLc0PFxh8NRBgK2hvhKaxRM1w3IZ9TnfJM0+uadg=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
subPackages = [
|
|
"cmd/wazero"
|
|
];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=github.com/tetratelabs/wazero/internal/version.version=${version}"
|
|
];
|
|
|
|
checkFlags = [
|
|
# fails when version is specified
|
|
"-skip=TestCompile|TestRun"
|
|
];
|
|
|
|
passthru.tests = {
|
|
version = testers.testVersion {
|
|
package = wazero;
|
|
command = "wazero version";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Zero dependency WebAssembly runtime for Go developers";
|
|
homepage = "https://github.com/tetratelabs/wazero";
|
|
changelog = "https://github.com/tetratelabs/wazero/releases/tag/${src.rev}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
mainProgram = "wazero";
|
|
};
|
|
}
|