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