nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.03 22 lines 547 B view raw
1{ stdenv, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "renderizer"; 5 version = "2.0.5"; 6 7 src = fetchFromGitHub { 8 owner = "gomatic"; 9 repo = pname; 10 rev = version; 11 sha256 = "186wcfzw60z6i59yl37rkppw8w88z5kikvsi65k4r9kwpll2z6z4"; 12 }; 13 14 modSha256 = "1sxg9skd5hjpg2f4wyxh5hwjrplw3b3v32gn61a9yixfk3wvi05x"; 15 16 meta = with stdenv.lib; { 17 description = "CLI to render Go template text files"; 18 inherit (src.meta) homepage; 19 license = licenses.gpl3; 20 maintainers = with maintainers; [ yurrriq ]; 21 }; 22}