Skip to content

Commit

Permalink
gomplate: init at 3.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
risicle committed Oct 2, 2020
1 parent d228ae9 commit d451ecb
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pkgs/development/tools/gomplate/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{ stdenv, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
pname = "gomplate";
version = "3.8.0";
owner = "hairyhenderson";
rev = "v${version}";

src = fetchFromGitHub {
inherit owner rev;
repo = pname;
sha256 = "058shbrhpd8ghdj5qa6n7mf1bh8qvpmiv3yjj39jys359zhin06n";
};

vendorSha256 = "0wqz3anxlzb0ds6xmpnaxq5rjgcmzkzrdqhnkfkjq32b7mj9mks3";

# some tests require network access
postPatch = ''
rm net/net_test.go
'';

buildFlagsArray = [
"-ldflags="
"-s"
"-w"
"-X github.com/${owner}/${pname}/v3/version.Version=${rev}"
];

meta = with stdenv.lib; {
description = "A flexible commandline tool for template rendering";
homepage = "https://gomplate.ca/";
maintainers = with maintainers; [ ris jlesquembre ];
license = licenses.mit;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17516,6 +17516,8 @@ in

gomp = callPackage ../applications/version-management/gomp { };

gomplate = callPackage ../development/tools/gomplate {};

gpm = callPackage ../servers/gpm {
ncurses = null; # Keep curses disabled for lack of value
};
Expand Down

0 comments on commit d451ecb

Please sign in to comment.