2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, lib, buildEnv, buildGoPackage, fetchFromGitHub, makeWrapper }:
|
2016-06-05 11:16:58 +02:00
|
|
|
|
2017-03-17 10:05:16 +01:00
|
|
|
let
|
2017-03-31 13:19:22 +02: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 10:05:16 +01:00
|
|
|
|
2017-03-31 13:19:22 +02: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');
|
2017-08-30 18:25:34 +02:00
|
|
|
|
|
|
|
pluggable = terraform:
|
|
|
|
let
|
2017-08-31 00:53:14 +02:00
|
|
|
withPlugins = plugins:
|
|
|
|
let
|
|
|
|
actualPlugins = plugins terraform.plugins;
|
2017-08-30 18:25:34 +02:00
|
|
|
|
2018-03-28 02:25:23 +02:00
|
|
|
# Wrap PATH of plugins propagatedBuildInputs, plugins may have runtime dependencies on external binaries
|
|
|
|
wrapperInputs = lib.unique (lib.flatten (lib.catAttrs "propagatedBuildInputs" (builtins.filter (x: x != null) actualPlugins)));
|
|
|
|
|
2017-08-31 00:53:14 +02:00
|
|
|
passthru = {
|
|
|
|
withPlugins = newplugins: withPlugins (x: newplugins x ++ actualPlugins);
|
2017-08-30 18:25:34 +02:00
|
|
|
|
2017-08-31 00:53:14 +02:00
|
|
|
# Ouch
|
|
|
|
overrideDerivation = f: (pluggable (terraform.overrideDerivation f)).withPlugins plugins;
|
|
|
|
overrideAttrs = f: (pluggable (terraform.overrideAttrs f)).withPlugins plugins;
|
|
|
|
override = x: (pluggable (terraform.override x)).withPlugins plugins;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
# Don't bother wrapping unless we actually have plugins, since the wrapper will stop automatic downloading
|
|
|
|
# of plugins, which might be counterintuitive if someone just wants a vanilla Terraform.
|
|
|
|
if actualPlugins == []
|
|
|
|
then terraform.overrideAttrs (orig: { passthru = orig.passthru // passthru; })
|
2018-07-19 23:58:25 +02:00
|
|
|
else lib.appendToName "with-plugins"(stdenv.mkDerivation {
|
2018-05-25 11:21:47 +02:00
|
|
|
inherit (terraform) name;
|
2017-08-31 00:53:14 +02:00
|
|
|
buildInputs = [ makeWrapper ];
|
2017-08-30 18:25:34 +02:00
|
|
|
|
2017-08-31 00:53:14 +02:00
|
|
|
buildCommand = ''
|
|
|
|
mkdir -p $out/bin/
|
|
|
|
makeWrapper "${terraform.bin}/bin/terraform" "$out/bin/terraform" \
|
2018-03-28 02:25:23 +02:00
|
|
|
--set NIX_TERRAFORM_PLUGIN_DIR "${buildEnv { name = "tf-plugin-env"; paths = actualPlugins; }}/bin" \
|
|
|
|
--prefix PATH : "${lib.makeBinPath wrapperInputs}"
|
2017-08-31 00:53:14 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
inherit passthru;
|
2018-05-25 11:21:47 +02:00
|
|
|
});
|
2017-08-30 18:25:34 +02:00
|
|
|
in withPlugins (_: []);
|
|
|
|
|
2018-07-21 02:44:44 +02:00
|
|
|
plugins = import ./providers { inherit lib buildGoPackage fetchFromGitHub; };
|
2018-01-10 10:47:52 +01:00
|
|
|
in rec {
|
2017-03-17 10:05:16 +01:00
|
|
|
terraform_0_8_5 = generic {
|
|
|
|
version = "0.8.5";
|
|
|
|
sha256 = "1cxwv3652fpsbm2zk1akw356cd7w7vhny1623ighgbz9ha8gvg09";
|
|
|
|
};
|
|
|
|
|
2017-08-30 11:23:05 +02:00
|
|
|
terraform_0_8 = generic {
|
2017-03-17 10:05:16 +01:00
|
|
|
version = "0.8.8";
|
2017-03-05 02:53:36 +01:00
|
|
|
sha256 = "0ibgpcpvz0bmn3cw60nzsabsrxrbmmym1hv7fx6zmjxiwd68w5gb";
|
2016-06-05 11:16:58 +02:00
|
|
|
};
|
|
|
|
|
2017-08-30 11:23:05 +02:00
|
|
|
terraform_0_9 = generic {
|
2017-07-04 15:06:04 +02:00
|
|
|
version = "0.9.11";
|
|
|
|
sha256 = "045zcpd4g9c52ynhgh3213p422ahds63mzhmd2iwcmj88g8i1w6x";
|
2017-07-12 18:12:22 +02:00
|
|
|
# checks are failing again
|
|
|
|
doCheck = false;
|
2017-06-28 00:04:11 +02:00
|
|
|
};
|
2017-08-03 12:05:21 +02:00
|
|
|
|
2017-08-30 18:25:34 +02:00
|
|
|
terraform_0_10 = pluggable (generic {
|
2017-11-22 22:02:35 +01:00
|
|
|
version = "0.10.8";
|
|
|
|
sha256 = "11hhij0hq99xhwlg5dx5nv7y074x79wkr8hr3wc6ln0kwdk5scdf";
|
2017-08-30 18:25:34 +02:00
|
|
|
patches = [ ./provider-path.patch ];
|
|
|
|
passthru = { inherit plugins; };
|
|
|
|
});
|
2017-11-22 22:06:02 +01:00
|
|
|
|
2018-01-10 10:47:52 +01:00
|
|
|
terraform_0_10-full = terraform_0_10.withPlugins lib.attrValues;
|
|
|
|
|
2017-11-22 22:06:02 +01:00
|
|
|
terraform_0_11 = pluggable (generic {
|
2018-05-20 18:13:59 +02:00
|
|
|
version = "0.11.7";
|
|
|
|
sha256 = "0q5gl8yn1f8fas1v68lz081k88gbmlk7f2xqlwqmh01qpqjxd42q";
|
2017-11-22 22:06:02 +01:00
|
|
|
patches = [ ./provider-path.patch ];
|
|
|
|
passthru = { inherit plugins; };
|
|
|
|
});
|
2018-01-10 10:47:52 +01:00
|
|
|
|
|
|
|
terraform_0_11-full = terraform_0_11.withPlugins lib.attrValues;
|
2016-06-05 11:16:58 +02:00
|
|
|
}
|