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

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

49 lines
1.3 KiB
Nix
Raw Normal View History

2023-03-02 12:33:47 +03:00
{ lib
2024-02-14 17:51:19 +03:00
, buildGoModule
2023-03-02 12:33:47 +03:00
, fetchFromGitHub
}:
2020-10-02 19:05:11 +03:00
2024-02-14 17:51:19 +03:00
buildGoModule rec {
2020-10-02 19:05:11 +03:00
pname = "gomplate";
2024-01-23 10:39:39 +03:00
version = "3.11.7";
2020-10-02 19:05:11 +03:00
src = fetchFromGitHub {
2023-03-02 12:33:47 +03:00
owner = "hairyhenderson";
2020-10-02 19:05:11 +03:00
repo = pname;
2023-03-02 12:33:47 +03:00
rev = "refs/tags/v${version}";
2024-01-23 10:39:39 +03:00
hash = "sha256-0cYQ44SF8fQ5Ml0tRUbqTFZ+zDVTV6elox1q6tNsG7Q=";
2020-10-02 19:05:11 +03:00
};
2024-01-23 10:39:39 +03:00
vendorHash = "sha256-8siITXKIqDbph/74aBEvkbLVqHE30VyRompFL6z92zA=";
2020-10-02 19:05:11 +03:00
postPatch = ''
2022-04-10 19:23:45 +03: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 19:05:11 +03:00
'';
# TestInputDir_RespectsUlimit
preCheck = ''
ulimit -n 1024
'';
2021-08-26 09:45:51 +03:00
ldflags = [
2020-10-02 19:05:11 +03:00
"-s"
"-w"
2023-03-02 12:33:47 +03:00
"-X github.com/${src.owner}/${pname}/v3/version.Version=${version}"
2020-10-02 19:05:11 +03:00
];
meta = with lib; {
2020-10-02 19:05:11 +03:00
description = "A flexible commandline tool for template rendering";
mainProgram = "gomplate";
2020-10-02 19:05:11 +03:00
homepage = "https://gomplate.ca/";
2023-03-02 12:24:44 +03:00
changelog = "https://github.com/hairyhenderson/gomplate/releases/tag/v${version}";
2020-10-02 19:05:11 +03:00
license = licenses.mit;
2023-03-02 12:24:44 +03:00
maintainers = with maintainers; [ ris jlesquembre ];
2020-10-02 19:05:11 +03:00
};
}