Skip to content

Commit 4d25979

Browse files
committedJun 27, 2017
Partially revert "terraform: 0.9.4 -> 0.9.6."
Terraform point releases are significant changes, we need to keep old ones around This reverts commit 6a27b46.
1 parent c710ddf commit 4d25979

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed
 

Diff for: ‎pkgs/applications/networking/cluster/terraform/default.nix

+10
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,16 @@ in {
4848
sha256 = "0ibgpcpvz0bmn3cw60nzsabsrxrbmmym1hv7fx6zmjxiwd68w5gb";
4949
};
5050

51+
terraform_0_9_4 = generic {
52+
version = "0.9.4";
53+
sha256 = "07vcmjyl0y48hm5lqqzdd51hmrxapvywzbdkg5f3rcqd7dn9c2xs";
54+
postPatch = ''
55+
rm builtin/providers/dns/data_dns_cname_record_set_test.go
56+
rm builtin/providers/vsphere/resource_vsphere_file_test.go
57+
'';
58+
doCheck = true;
59+
};
60+
5161
terraform_0_9_6 = generic {
5262
version = "0.9.6";
5363
sha256 = "1f6z1zkklzpqgc7akgdz1g306ccmhni5lmg7i6g762n3qai60bnv";

Diff for: ‎pkgs/top-level/all-packages.nix

+1
Original file line numberDiff line numberDiff line change
@@ -18643,6 +18643,7 @@ with pkgs;
1864318643
inherit (callPackage ../applications/networking/cluster/terraform {})
1864418644
terraform_0_8_5
1864518645
terraform_0_8_8
18646+
terraform_0_9_4
1864618647
terraform_0_9_6;
1864718648

1864818649
terraform_0_8 = terraform_0_8_8;

2 commit comments

Comments
 (2)

shlevy commented on Jun 27, 2017

@shlevy
MemberAuthor

diegs commented on Jun 27, 2017

@diegs
Contributor

thanks for the cc, i'll keep old ones during future version bumps.

Please sign in to comment.