2023-03-04 12:14:45 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
2020-10-07 09:15:18 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gomplate";
|
2023-04-29 16:46:19 +00:00
|
|
|
version = "3.11.5";
|
2020-10-07 09:15:18 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2023-03-04 12:14:45 +00:00
|
|
|
owner = "hairyhenderson";
|
2020-10-07 09:15:18 +00:00
|
|
|
repo = pname;
|
2023-03-04 12:14:45 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2023-04-29 16:46:19 +00:00
|
|
|
hash = "sha256-cBSOfjU7A6B7+5zQLGtGLx9kORsjH/IzGgkjwjjTcYY=";
|
2020-10-07 09:15:18 +00:00
|
|
|
};
|
|
|
|
|
2023-04-29 16:46:19 +00:00
|
|
|
vendorHash = "sha256-thsa15CDD7+gCSPSU4xDbovETREeuL4gV6TjdcImj9w=";
|
2020-10-07 09:15:18 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
2022-04-27 09:35:20 +00:00
|
|
|
# some tests require network access
|
|
|
|
rm net/net_test.go \
|
|
|
|
internal/tests/integration/datasources_blob_test.go \
|
|
|
|
internal/tests/integration/datasources_git_test.go
|
|
|
|
# some tests rely on external tools we'd rather not depend on
|
|
|
|
rm internal/tests/integration/datasources_consul_test.go \
|
|
|
|
internal/tests/integration/datasources_vault*_test.go
|
2020-10-07 09:15:18 +00:00
|
|
|
'';
|
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
# TestInputDir_RespectsUlimit
|
|
|
|
preCheck = ''
|
|
|
|
ulimit -n 1024
|
|
|
|
'';
|
|
|
|
|
2021-08-27 14:25:00 +00:00
|
|
|
ldflags = [
|
2020-10-07 09:15:18 +00:00
|
|
|
"-s"
|
|
|
|
"-w"
|
2023-03-04 12:14:45 +00:00
|
|
|
"-X github.com/${src.owner}/${pname}/v3/version.Version=${version}"
|
2020-10-07 09:15:18 +00:00
|
|
|
];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-10-07 09:15:18 +00:00
|
|
|
description = "A flexible commandline tool for template rendering";
|
|
|
|
homepage = "https://gomplate.ca/";
|
2023-03-04 12:14:45 +00:00
|
|
|
changelog = "https://github.com/hairyhenderson/gomplate/releases/tag/v${version}";
|
2020-10-07 09:15:18 +00:00
|
|
|
license = licenses.mit;
|
2023-03-04 12:14:45 +00:00
|
|
|
maintainers = with maintainers; [ ris jlesquembre ];
|
2020-10-07 09:15:18 +00:00
|
|
|
};
|
|
|
|
}
|