mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
Merge pull request #82458 from marsam/fix-terraform-darwin
terraform: fix build on darwin
This commit is contained in:
commit
caa9585b87
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user