terraform: 0.6.16 -> 0.7.0

This commit is contained in:
zimbatm 2016-08-03 09:51:59 +01:00
parent 772a7bb49b
commit 2f791c7444
2 changed files with 6 additions and 4 deletions

View File

@ -2,7 +2,7 @@
buildGoPackage rec {
name = "terraform-${version}";
version = "0.6.16";
version = "0.7.0";
rev = "v${version}";
goPackagePath = "github.com/hashicorp/terraform";
@ -11,13 +11,13 @@ buildGoPackage rec {
inherit rev;
owner = "hashicorp";
repo = "terraform";
sha256 = "1bg8hn4b31xphyxrc99bpnf7gmq20fxqx1k871nidx132brcsah2";
sha256 = "0k5d6zph6sq1qg8vi5jmk7apy6v67xn5i7rqjamyr5an7lpxssc9";
};
postInstall = ''
# prefix all the plugins with "terraform-"
for i in $bin/bin/*; do
if [[ ! $(basename $i) =~ terraform* ]]; then
if [[ $(basename $i) != terraform ]]; then
mv -v $i $bin/bin/terraform-$(basename $i);
fi
done

View File

@ -17319,7 +17319,9 @@ in
sqsh = callPackage ../development/tools/sqsh { };
terraform = callPackage ../applications/networking/cluster/terraform { };
terraform =
(callPackage ../applications/networking/cluster/terraform {}).bin //
{ outputs = [ "bin" ]; };
tetex = callPackage ../tools/typesetting/tex/tetex { libpng = libpng12; };