renderizer: 2.0.9 -> 2.0.12

Also enable tests, and fix the version output.
This commit is contained in:
Eric Bailey 2021-03-10 17:16:31 -06:00 committed by Eric Bailey
parent 5e367ecef9
commit c30a9fd946

View file

@ -2,18 +2,20 @@
buildGoModule rec {
pname = "renderizer";
version = "2.0.9";
version = "2.0.12";
src = fetchFromGitHub {
owner = "gomatic";
repo = pname;
rev = version;
sha256 = "1bip12pcn8bqgph7vd7bzzadwbyqh80fx7gqciv9fchycwsj04rf";
rev = "v${version}";
sha256 = "sha256-Ji+wTTXLp17EYRIjUiVgd33ZeBdT8K2O8R2Ejq2Ll5I=";
};
vendorSha256 = "13z357ww4j5bmmy8ag6d6gd5b2dib8kby73q8317pqnqzaxrrbcj";
buildFlagsArray = [
"-ldflags=-s -w -X main.version=${version} -X main.commitHash=${src.rev} -X main.date=19700101T000000"
];
doCheck = false;
vendorSha256 = null;
meta = with lib; {
description = "CLI to render Go template text files";