mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 02:33:25 +00:00
d641f40854
Diff: https://github.com/ktock/container2wasm/compare/refs/tags/v0.4.0...v0.5.1 Changelog: https://github.com/ktock/container2wasm/releases/tag/v0.5.1
38 lines
834 B
Nix
38 lines
834 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "container2wasm";
|
|
version = "0.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ktock";
|
|
repo = "container2wasm";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-ba40Nu2tVrRSvVeGxlrn0Bw+xQqWeli40lwBWOXSNTA=";
|
|
};
|
|
|
|
vendorHash = "sha256-tyfLWmxAzFc0JuSem8L0HPG4wy9Gxdp8F/J3DyOx6rQ=";
|
|
|
|
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";
|
|
};
|
|
}
|