3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #82458 from marsam/fix-terraform-darwin

terraform: fix build on darwin
This commit is contained in:
Mario Rodas 2020-03-13 08:35:35 -05:00 committed by GitHub
commit caa9585b87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25650,7 +25650,10 @@ in
buildGoModule = buildGo112Module;
};
inherit (callPackage ../applications/networking/cluster/terraform {})
inherit (callPackage ../applications/networking/cluster/terraform {
# terraform 0.12 crashes with go1.14 on darwin https://github.com/hashicorp/terraform/issues/24287
buildGoPackage = if stdenv.isDarwin then buildGo113Package else buildGoPackage;
})
terraform_0_11
terraform_0_11-full
terraform_0_12