envconsul: init at 0.6.2

This commit is contained in:
Pradeep Chhetri 2017-02-18 00:50:28 +05:30
parent 03024b39b7
commit 1973a29536
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "envconsul-${version}";
version = "0.6.2";
rev = "v${version}";
goPackagePath = "github.com/hashicorp/envconsul";
src = fetchFromGitHub {
inherit rev;
owner = "hashicorp";
repo = "envconsul";
sha256 = "176jbicyg7vwd0kgawz859gq7ldrxyw1gx55wig7azakiidkl731";
};
meta = with stdenv.lib; {
homepage = https://github.com/hashicorp/envconsul/;
description = "Read and set environmental variables for processes from Consul";
platforms = platforms.linux ++ platforms.darwin;
license = licenses.mpl20;
maintainers = with maintainers; [ pradeepchhetri ];
};
}

View file

@ -856,6 +856,8 @@ with pkgs;
ent = callPackage ../tools/misc/ent { };
envconsul = callPackage ../tools/system/envconsul { };
f3 = callPackage ../tools/filesystems/f3 { };
facter = callPackage ../tools/system/facter {