1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/tools/renderizer/default.nix

25 lines
560 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2020-01-23 16:04:54 +00:00
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;
meta = with lib; {
2020-01-23 16:04:54 +00:00
description = "CLI to render Go template text files";
inherit (src.meta) homepage;
license = licenses.gpl3;
maintainers = with maintainers; [ yurrriq ];
};
}