terraform: only expose maj.min to top-level

We shouldn't encourage users to depend on a tiny release.
This commit is contained in:
zimbatm 2017-08-30 10:23:05 +01:00 committed by Franz Pletz
parent 6c1389d1e6
commit 998f516fb0
2 changed files with 7 additions and 9 deletions

View File

@ -43,19 +43,19 @@ in {
sha256 = "1cxwv3652fpsbm2zk1akw356cd7w7vhny1623ighgbz9ha8gvg09"; sha256 = "1cxwv3652fpsbm2zk1akw356cd7w7vhny1623ighgbz9ha8gvg09";
}; };
terraform_0_8_8 = generic { terraform_0_8 = generic {
version = "0.8.8"; version = "0.8.8";
sha256 = "0ibgpcpvz0bmn3cw60nzsabsrxrbmmym1hv7fx6zmjxiwd68w5gb"; sha256 = "0ibgpcpvz0bmn3cw60nzsabsrxrbmmym1hv7fx6zmjxiwd68w5gb";
}; };
terraform_0_9_11 = generic { terraform_0_9 = generic {
version = "0.9.11"; version = "0.9.11";
sha256 = "045zcpd4g9c52ynhgh3213p422ahds63mzhmd2iwcmj88g8i1w6x"; sha256 = "045zcpd4g9c52ynhgh3213p422ahds63mzhmd2iwcmj88g8i1w6x";
# checks are failing again # checks are failing again
doCheck = false; doCheck = false;
}; };
terraform_0_10_2 = generic { terraform_0_10 = generic {
version = "0.10.2"; version = "0.10.2";
sha256 = "1q7za7jcfqv914a3ynfl7hrqbgwcahgm418kivjrac6p1q26w502"; sha256 = "1q7za7jcfqv914a3ynfl7hrqbgwcahgm418kivjrac6p1q26w502";
}; };

View File

@ -18976,13 +18976,11 @@ with pkgs;
inherit (callPackage ../applications/networking/cluster/terraform {}) inherit (callPackage ../applications/networking/cluster/terraform {})
terraform_0_8_5 terraform_0_8_5
terraform_0_8_8 terraform_0_8
terraform_0_9_11 terraform_0_9
terraform_0_10_2; terraform_0_10
;
terraform_0_8 = terraform_0_8_8;
terraform_0_9 = terraform_0_9_11;
terraform_0_10 = terraform_0_10_2;
terraform = terraform_0_9; terraform = terraform_0_9;
terraform-inventory = callPackage ../applications/networking/cluster/terraform-inventory {}; terraform-inventory = callPackage ../applications/networking/cluster/terraform-inventory {};