2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-30 01:23:03 +00:00

terraform: fix build on darwin

This commit is contained in:
Mario Rodas 2020-03-12 20:20:20 -05:00
parent 0ba1c4f184
commit 0521dc3f19
No known key found for this signature in database
GPG Key ID: 325649BCA6D53027

View File

@ -25655,7 +25655,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