nixpkgs/pkgs/development/tools/gomplate/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.2 KiB
Nix
Raw Normal View History

2023-03-02 09:33:47 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
2020-10-02 16:05:11 +00:00
buildGoModule rec {
pname = "gomplate";
2023-04-21 03:11:34 +00:00
version = "3.11.5";
2020-10-02 16:05:11 +00:00
src = fetchFromGitHub {
2023-03-02 09:33:47 +00:00
owner = "hairyhenderson";
2020-10-02 16:05:11 +00:00
repo = pname;
2023-03-02 09:33:47 +00:00
rev = "refs/tags/v${version}";
2023-04-21 03:11:34 +00:00
hash = "sha256-cBSOfjU7A6B7+5zQLGtGLx9kORsjH/IzGgkjwjjTcYY=";
2020-10-02 16:05:11 +00:00
};
2023-04-21 03:11:34 +00:00
vendorHash = "sha256-thsa15CDD7+gCSPSU4xDbovETREeuL4gV6TjdcImj9w=";
2020-10-02 16:05:11 +00:00
postPatch = ''
2022-04-10 16:23:45 +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-02 16:05:11 +00:00
'';
# TestInputDir_RespectsUlimit
preCheck = ''
ulimit -n 1024
'';
2021-08-26 06:45:51 +00:00
ldflags = [
2020-10-02 16:05:11 +00:00
"-s"
"-w"
2023-03-02 09:33:47 +00:00
"-X github.com/${src.owner}/${pname}/v3/version.Version=${version}"
2020-10-02 16:05:11 +00:00
];
meta = with lib; {
2020-10-02 16:05:11 +00:00
description = "A flexible commandline tool for template rendering";
homepage = "https://gomplate.ca/";
2023-03-02 09:24:44 +00:00
changelog = "https://github.com/hairyhenderson/gomplate/releases/tag/v${version}";
2020-10-02 16:05:11 +00:00
license = licenses.mit;
2023-03-02 09:24:44 +00:00
maintainers = with maintainers; [ ris jlesquembre ];
2020-10-02 16:05:11 +00:00
};
}