nixpkgs/pkgs/development/tools/renderizer/default.nix

25 lines
570 B
Nix
Raw Normal View History

2020-01-23 16:04:54 +00:00
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "renderizer";
2020-03-14 12:41:23 +00:00
version = "2.0.9";
2020-01-23 16:04:54 +00:00
src = fetchFromGitHub {
owner = "gomatic";
repo = pname;
rev = version;
2020-03-14 12:41:23 +00:00
sha256 = "1bip12pcn8bqgph7vd7bzzadwbyqh80fx7gqciv9fchycwsj04rf";
2020-01-23 16:04:54 +00:00
};
vendorSha256 = "13z357ww4j5bmmy8ag6d6gd5b2dib8kby73q8317pqnqzaxrrbcj";
2020-01-23 16:04:54 +00:00
doCheck = false;
2020-01-23 16:04:54 +00:00
meta = with stdenv.lib; {
description = "CLI to render Go template text files";
inherit (src.meta) homepage;
license = licenses.gpl3;
maintainers = with maintainers; [ yurrriq ];
};
}