2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
2016-06-04 22:31:11 +02:00
|
|
|
|
2016-06-07 22:32:34 +02:00
|
|
|
buildGoPackage rec {
|
2016-06-04 22:31:11 +02:00
|
|
|
name = "consul-template-${version}";
|
2018-02-26 02:39:14 +01:00
|
|
|
version = "0.19.4";
|
2016-06-04 22:31:11 +02:00
|
|
|
rev = "v${version}";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/hashicorp/consul-template";
|
|
|
|
|
2016-06-06 12:56:28 +02:00
|
|
|
src = fetchFromGitHub {
|
2016-06-04 22:31:11 +02:00
|
|
|
inherit rev;
|
2016-06-06 12:56:28 +02:00
|
|
|
owner = "hashicorp";
|
|
|
|
repo = "consul-template";
|
2018-02-26 02:39:14 +01:00
|
|
|
sha256 = "06agjzpax45gw7s9b69cz9w523nx7ksikqcg0z0vipwrp7pwrydd";
|
2017-02-01 04:38:01 +01: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 22:31:11 +02:00
|
|
|
};
|
|
|
|
}
|