summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsevenfourk <sevenfourk@protonmail.ch>2020-11-18 19:58:28 +0200
committerGitHub <noreply@github.com>2020-11-18 18:58:28 +0100
commit45ed0b7018f0e2db1bb06fbc909b213077c29b17 (patch)
tree0b8c8679bca73dd62bfdf4ec2e74803620848247
parent77ff58e55efc13ac2f9722220ba316838ea7640c (diff)
terragrunt: removing terraform dependency (#103670)
Since terragrunt would trigger downloading all the plugins and basing on terraform 0.12 branch whereas people could use it against 0.11 or 0.13 terraform.
-rw-r--r--pkgs/applications/networking/cluster/terragrunt/default.nix7
1 files changed, 1 insertions, 6 deletions
diff --git a/pkgs/applications/networking/cluster/terragrunt/default.nix b/pkgs/applications/networking/cluster/terragrunt/default.nix
index e607a9ee75ba..68c41c64d86f 100644
--- a/pkgs/applications/networking/cluster/terragrunt/default.nix
+++ b/pkgs/applications/networking/cluster/terragrunt/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildGoModule, fetchFromGitHub, makeWrapper, terraform }:
+{ lib, buildGoModule, fetchFromGitHub, makeWrapper }:
buildGoModule rec {
pname = "terragrunt";
@@ -19,11 +19,6 @@ buildGoModule rec {
buildFlagsArray = [ "-ldflags=" "-X main.VERSION=v${version}" ];
- postInstall = ''
- wrapProgram $out/bin/terragrunt \
- --set TERRAGRUNT_TFPATH ${lib.getBin terraform.full}/bin/terraform
- '';
-
meta = with lib; {
description = "A thin wrapper for Terraform that supports locking for Terraform state and enforces best practices";
homepage = "https://github.com/gruntwork-io/terragrunt/";