2017-04-01 12:54:24 +01:00
|
|
|
{ stdenv, lib, buildGoPackage, fetchpatch, fetchFromGitHub }:
|
2016-06-05 10:16:58 +01:00
|
|
|
|
2017-03-17 09:05:16 +00:00
|
|
|
let
|
2017-03-31 12:19:22 +01:00
|
|
|
goPackagePath = "github.com/hashicorp/terraform";
|
|
|
|
|
|
|
|
generic = { version, sha256, ... }@attrs:
|
|
|
|
let attrs' = builtins.removeAttrs attrs ["version" "sha256"]; in
|
|
|
|
buildGoPackage ({
|
|
|
|
name = "terraform-${version}";
|
|
|
|
|
|
|
|
inherit goPackagePath;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hashicorp";
|
|
|
|
repo = "terraform";
|
|
|
|
rev = "v${version}";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
# remove all plugins, they are part of the main binary now
|
|
|
|
for i in $bin/bin/*; do
|
|
|
|
if [[ $(basename $i) != terraform ]]; then
|
|
|
|
rm "$i"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
'';
|
2017-03-17 09:05:16 +00:00
|
|
|
|
2017-03-31 12:19:22 +01:00
|
|
|
preCheck = ''
|
|
|
|
export HOME=$TMP
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Tool for building, changing, and versioning infrastructure";
|
|
|
|
homepage = https://www.terraform.io/;
|
|
|
|
license = licenses.mpl20;
|
|
|
|
maintainers = with maintainers; [ jgeerds zimbatm peterhoeg ];
|
|
|
|
};
|
|
|
|
} // attrs');
|
|
|
|
|
|
|
|
in {
|
2017-03-17 09:05:16 +00:00
|
|
|
terraform_0_8_5 = generic {
|
|
|
|
version = "0.8.5";
|
|
|
|
sha256 = "1cxwv3652fpsbm2zk1akw356cd7w7vhny1623ighgbz9ha8gvg09";
|
|
|
|
};
|
|
|
|
|
|
|
|
terraform_0_8_8 = generic {
|
|
|
|
version = "0.8.8";
|
2017-03-05 01:53:36 +00:00
|
|
|
sha256 = "0ibgpcpvz0bmn3cw60nzsabsrxrbmmym1hv7fx6zmjxiwd68w5gb";
|
2016-06-05 10:16:58 +01:00
|
|
|
};
|
|
|
|
|
2017-03-31 12:19:22 +01:00
|
|
|
terraform_0_9_2 = generic {
|
|
|
|
version = "0.9.2";
|
|
|
|
sha256 = "1yj5x1d10028fm3v3gjyjdn128ps0as345hr50y8x3vn86n70lxl";
|
|
|
|
|
|
|
|
patches = [
|
2017-04-01 12:54:24 +01:00
|
|
|
(fetchpatch {
|
2017-03-31 12:19:22 +01:00
|
|
|
url = "https://github.com/hashicorp/terraform/pull/13237.patch";
|
2017-04-01 12:54:24 +01:00
|
|
|
sha256 = "03c2nq12gvqqp12znvl3lmiviwsqksx4nrplv09fns2kz2gyfnbm";
|
2017-03-31 12:19:22 +01:00
|
|
|
})
|
2017-04-01 12:54:24 +01:00
|
|
|
(fetchpatch {
|
2017-03-31 12:19:22 +01:00
|
|
|
url = "https://github.com/hashicorp/terraform/pull/13248.patch";
|
2017-04-01 12:54:24 +01:00
|
|
|
sha256 = "0awj8gaic0j7a69is95f2rll3yip4n6avai1jh20b1x7dybdrp5m";
|
2017-03-31 12:19:22 +01:00
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
2016-08-22 15:22:29 +01:00
|
|
|
};
|
2016-06-05 10:16:58 +01:00
|
|
|
}
|