2018-07-20 17:44:44 -07:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
2016-06-04 13:31:11 -07:00
|
|
|
|
2016-06-07 13:32:34 -07:00
|
|
|
buildGoPackage rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "consul-template";
|
2018-02-25 17:39:14 -08:00
|
|
|
version = "0.19.4";
|
2016-06-04 13:31:11 -07:00
|
|
|
rev = "v${version}";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/hashicorp/consul-template";
|
|
|
|
|
2016-06-06 03:56:28 -07:00
|
|
|
src = fetchFromGitHub {
|
2016-06-04 13:31:11 -07:00
|
|
|
inherit rev;
|
2016-06-06 03:56:28 -07:00
|
|
|
owner = "hashicorp";
|
|
|
|
repo = "consul-template";
|
2018-02-25 17:39:14 -08:00
|
|
|
sha256 = "06agjzpax45gw7s9b69cz9w523nx7ksikqcg0z0vipwrp7pwrydd";
|
2017-01-31 19:38:01 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/hashicorp/consul-template/;
|
|
|
|
description = "Generic template rendering and notifications with Consul";
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
license = licenses.mpl20;
|
|
|
|
maintainers = with maintainers; [ pradeepchhetri ];
|
2016-06-04 13:31:11 -07:00
|
|
|
};
|
|
|
|
}
|