2021-02-05 17:12:51 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-09 10:05:03 +00:00
|
|
|
buildGoModule rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "consul-template";
|
2023-04-29 16:46:19 +00:00
|
|
|
version = "0.31.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hashicorp";
|
|
|
|
repo = "consul-template";
|
2021-01-09 10:05:03 +00:00
|
|
|
rev = "v${version}";
|
2023-04-29 16:46:19 +00:00
|
|
|
hash = "sha256-6B6qijC10WOyGQ9159DK0+WSE19fXbwQc023pkg1iqQ=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-04-29 16:46:19 +00:00
|
|
|
vendorHash = "sha256-wNZliD6mcJT+/U/1jiwdYubYe0Oa+YR6vSLo5vs0bDk=";
|
2021-01-09 10:05:03 +00:00
|
|
|
|
|
|
|
# consul-template tests depend on vault and consul services running to
|
|
|
|
# execute tests so we skip them here
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/hashicorp/consul-template/";
|
|
|
|
description = "Generic template rendering and notifications with Consul";
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
license = licenses.mpl20;
|
2021-01-09 10:05:03 +00:00
|
|
|
maintainers = with maintainers; [ cpcloud pradeepchhetri ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|