Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
792 B
Nix
33 lines
792 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
buildGoModule rec {
|
|
|
|
pname = "gotemplate";
|
|
version = "3.12.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "coveooss";
|
|
repo = "gotemplate";
|
|
tag = "v${version}";
|
|
hash = "sha256-XcSlQ0Gw+EW2sJK+M2Sp9pcSSy2wsdRZ3MeFewhx7nw=";
|
|
};
|
|
|
|
vendorHash = "sha256-iNH0YmmZ/Qlc7WDoIbORd+uVg0rbQVKL6hX7YvbL0BE=";
|
|
|
|
# This is the value reported when running `gotemplate --version`,
|
|
# see https://github.com/coveooss/gotemplate/issues/262
|
|
ldflags = [ "-X main.version=${version}" ];
|
|
|
|
meta = {
|
|
description = "CLI for go text/template";
|
|
mainProgram = "gotemplate";
|
|
changelog = "https://github.com/coveooss/gotemplate/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.giorgiga ];
|
|
};
|
|
|
|
}
|