504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
37 lines
834 B
Nix
37 lines
834 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "container2wasm";
|
|
version = "0.5.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ktock";
|
|
repo = "container2wasm";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-P/9RbNEpQTpbbWpfN0AThWfYaXCy8SeFvsFQFqdk+Zo=";
|
|
};
|
|
|
|
vendorHash = "sha256-aY1/oOCaREXObi6RQ3nhQbYWpzOsJzDiiIRJ6CneB8c=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=github.com/ktock/container2wasm/version.Version=${version}"
|
|
];
|
|
|
|
subPackages = [
|
|
"cmd/c2w"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Container to WASM converter";
|
|
homepage = "https://github.com/ktock/container2wasm";
|
|
changelog = "https://github.com/ktock/container2wasm/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ dit7ya ];
|
|
mainProgram = "c2w";
|
|
};
|
|
}
|