2021-01-03 15:51:41 +00:00
|
|
|
{ stdenv, buildGoModule, fetchFromGitHub }:
|
2016-06-04 21:31:11 +01:00
|
|
|
|
2021-01-03 15:51:41 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "consul-template";
|
2021-01-03 15:51:41 +00:00
|
|
|
version = "0.25.1";
|
2016-06-04 21:31:11 +01:00
|
|
|
|
2016-06-06 11:56:28 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hashicorp";
|
|
|
|
repo = "consul-template";
|
2021-01-03 15:51:41 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1205rhv4mizpb1nbc2sry52n7wljcwb8xp7lpazh1r1cldfayr5b";
|
2017-02-01 03:38:01 +00:00
|
|
|
};
|
|
|
|
|
2021-01-03 15:51:41 +00:00
|
|
|
vendorSha256 = "0hv4b6k8k7xkzkjgzcm5y8pqyiwyk790a1qw18gjslkwkyw5hjf2";
|
|
|
|
|
|
|
|
# consul-template tests depend on vault and consul services running to
|
|
|
|
# execute tests so we skip them here
|
|
|
|
doCheck = false;
|
|
|
|
|
2017-02-01 03:38:01 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/hashicorp/consul-template/";
|
2017-02-01 03:38:01 +00:00
|
|
|
description = "Generic template rendering and notifications with Consul";
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
license = licenses.mpl20;
|
2021-01-03 15:51:41 +00:00
|
|
|
maintainers = with maintainers; [ cpcloud pradeepchhetri ];
|
2016-06-04 21:31:11 +01:00
|
|
|
};
|
|
|
|
}
|