renderizer: 2.0.9 -> 2.0.12

Also enable tests, and fix the version output.

authored by

Eric Bailey and committed by
Eric Bailey
c30a9fd9 5e367ece

+7 -5
+7 -5
pkgs/development/tools/renderizer/default.nix
··· 2 3 buildGoModule rec { 4 pname = "renderizer"; 5 - version = "2.0.9"; 6 7 src = fetchFromGitHub { 8 owner = "gomatic"; 9 repo = pname; 10 - rev = version; 11 - sha256 = "1bip12pcn8bqgph7vd7bzzadwbyqh80fx7gqciv9fchycwsj04rf"; 12 }; 13 14 - vendorSha256 = "13z357ww4j5bmmy8ag6d6gd5b2dib8kby73q8317pqnqzaxrrbcj"; 15 16 - doCheck = false; 17 18 meta = with lib; { 19 description = "CLI to render Go template text files";
··· 2 3 buildGoModule rec { 4 pname = "renderizer"; 5 + version = "2.0.12"; 6 7 src = fetchFromGitHub { 8 owner = "gomatic"; 9 repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-Ji+wTTXLp17EYRIjUiVgd33ZeBdT8K2O8R2Ejq2Ll5I="; 12 }; 13 14 + buildFlagsArray = [ 15 + "-ldflags=-s -w -X main.version=${version} -X main.commitHash=${src.rev} -X main.date=19700101T000000" 16 + ]; 17 18 + vendorSha256 = null; 19 20 meta = with lib; { 21 description = "CLI to render Go template text files";