about summary refs log tree commit diff
path: root/pkgs/tools/system/consul-template/default.nix
diff options
context:
space:
mode:
authorPradeep Chhetri <pradeep.chhetri89@gmail.com>2017-02-01 09:08:01 +0530
committerPradeep Chhetri <pradeep.chhetri89@gmail.com>2017-02-02 15:47:59 +0530
commit4d5c39611c57ea028d0869c084fe5df08cc688d2 (patch)
treedee79c2c5eeea09aab0aeb6cea4772d57a9d2217 /pkgs/tools/system/consul-template/default.nix
parente967068695c052f70a87a285ad60f796231da703 (diff)
downloadnixlib-4d5c39611c57ea028d0869c084fe5df08cc688d2.tar
nixlib-4d5c39611c57ea028d0869c084fe5df08cc688d2.tar.gz
nixlib-4d5c39611c57ea028d0869c084fe5df08cc688d2.tar.bz2
nixlib-4d5c39611c57ea028d0869c084fe5df08cc688d2.tar.lz
nixlib-4d5c39611c57ea028d0869c084fe5df08cc688d2.tar.xz
nixlib-4d5c39611c57ea028d0869c084fe5df08cc688d2.tar.zst
nixlib-4d5c39611c57ea028d0869c084fe5df08cc688d2.zip
consul-template: 0.14.0 -> 0.18.0
Diffstat (limited to 'pkgs/tools/system/consul-template/default.nix')
-rw-r--r--pkgs/tools/system/consul-template/default.nix12
1 files changed, 10 insertions, 2 deletions
diff --git a/pkgs/tools/system/consul-template/default.nix b/pkgs/tools/system/consul-template/default.nix
index 772c7e6d34b3..ad7222a67e50 100644
--- a/pkgs/tools/system/consul-template/default.nix
+++ b/pkgs/tools/system/consul-template/default.nix
@@ -2,7 +2,7 @@
 
 buildGoPackage rec {
   name = "consul-template-${version}";
-  version = "0.14.0";
+  version = "0.18.0";
   rev = "v${version}";
 
   goPackagePath = "github.com/hashicorp/consul-template";
@@ -11,6 +11,14 @@ buildGoPackage rec {
     inherit rev;
     owner = "hashicorp";
     repo = "consul-template";
-    sha256 = "15zsax44g3dwjmmm4fpb54mvsjvjf3b6g3ijskgipvhcy0d3j938";
+    sha256 = "1a1r7jwv0d4l8bcjal9chvr871hmw0ljbihgjqasp6gvjg0hfbx6";
+  };
+
+  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 ];
   };
 }