Merge pull request #99402 from risicle/ris-gomplate-init

gomplate: init at 3.8.0
This commit is contained in:
Robert Scott 2020-10-04 12:04:31 +01:00 committed by GitHub
commit 4de226e22d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -17526,6 +17526,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
};