Skip to content

Commit

Permalink
terragrunt: 0.14.0 -> 0.14.2
Browse files Browse the repository at this point in the history
Also pull in terraform-full as we need the plugins to actually do something.
  • Loading branch information
peterhoeg committed Mar 7, 2018
1 parent 2e20630 commit fb61777
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 deletions pkgs/applications/networking/cluster/terragrunt/default.nix
@@ -1,16 +1,16 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub, terraform, makeWrapper }:
{ stdenv, lib, buildGoPackage, fetchFromGitHub, terraform-full, makeWrapper }:

buildGoPackage rec {
name = "terragrunt-${version}";
version = "0.14.0";
version = "0.14.2";

goPackagePath = "github.com/gruntwork-io/terragrunt";

src = fetchFromGitHub {
rev = "v${version}";
owner = "gruntwork-io";
repo = "terragrunt";
sha256 = "1fz4ny7jmwr1xp68bmzlb6achird7jwbb6n6zim6c1w0qybxiqg9";
rev = "v${version}";
sha256 = "0bnscp0sjnzhnqbm7m5ip6g2608yfvsnr60f03y2qqld8m9wmj32";
};

goDeps = ./deps.nix;
Expand All @@ -23,7 +23,7 @@ buildGoPackage rec {

postInstall = ''
wrapProgram $bin/bin/terragrunt \
--set TERRAGRUNT_TFPATH ${lib.getBin terraform}/bin/terraform
--set TERRAGRUNT_TFPATH ${lib.getBin terraform-full}/bin/terraform
'';

meta = with stdenv.lib; {
Expand Down
24 changes: 12 additions & 12 deletions pkgs/applications/networking/cluster/terragrunt/deps.nix
Expand Up @@ -5,8 +5,8 @@
fetch = {
type = "git";
url = "https://github.com/aws/aws-sdk-go";
rev = "00cca3f093a8236a93fbbeeae7d28ad83811683c";
sha256 = "1x2frsin6d9drx9k65pv0r0l0asj16fzj815s2a9db2mxh8jycsp";
rev = "628f99e2cda77dd323992ede8b05961b41f4352f";
sha256 = "0dbr4czbjpnkira9bhackq01s9b13yvw5dscnxi3mr9adb89y9pm";
};
}
{
Expand All @@ -23,8 +23,8 @@
fetch = {
type = "git";
url = "https://github.com/go-errors/errors";
rev = "3afebba5a48dbc89b574d890b6b34d9ee10b4785";
sha256 = "1vwgczqzd5i6bx12g9ln5cqfsbc7g0f8cz8yvcrasss2injpndi0";
rev = "a6af135bd4e28680facf08a3d206b454abc877a4";
sha256 = "0rznpknk19rxkr7li6dqs52c26pjazp69lh493l4ny4sxn5922lp";
};
}
{
Expand All @@ -41,8 +41,8 @@
fetch = {
type = "git";
url = "https://github.com/hashicorp/go-getter";
rev = "285374cdfad63de2c43d7562f49ced6dde5a7ba0";
sha256 = "0xmwxfb0vm20ga1j1r3lavxm15vwqdkisdkshw1nia7byhwmb4xm";
rev = "64040d90d4ab861e7e833d689dc76a0f176d8dec";
sha256 = "0g25nx42z6ykd7jqzlrxf161h8lqrpxpddmbspl4w3a84wphhgms";
};
}
{
Expand Down Expand Up @@ -95,17 +95,17 @@
fetch = {
type = "git";
url = "https://github.com/mitchellh/mapstructure";
rev = "b4575eea38cca1123ec2dc90c26529b5c5acfcff";
sha256 = "1x80f3kcb1wd2mdxks3wcsp26q9g7ahr8b18z1anl5igg6zl61kf";
rev = "00c29f56e2386353d58c599509e8dc3801b0d716";
sha256 = "1vw8fvhax0d567amgvxr7glcl12lvzg2sbzs007q5k5bbwn1szyb";
};
}
{
goPackagePath = "github.com/stretchr/testify";
fetch = {
type = "git";
url = "https://github.com/stretchr/testify";
rev = "12b6f73e6084dad08a7c6e575284b177ecafbc71";
sha256 = "01f80s0q64pw5drfgqwwk1wfwwkvd2lhbs56lhhkff4ni83k73fd";
rev = "b89eecf5ca5db6d3ba60b237ffe3df7bafb7662f";
sha256 = "0g946ii8qjaynvidj648z8izl91i6yhy0ir6g3qsrn136im3r8wk";
};
}
{
Expand All @@ -122,8 +122,8 @@
fetch = {
type = "git";
url = "https://github.com/urfave/cli";
rev = "75104e932ac2ddb944a6ea19d9f9f26316ff1145";
sha256 = "13iagavgqq3sn9m3sck0chydwy5rcbhj0ylvc1169vs8q2m13yh9";
rev = "8e01ec4cd3e2d84ab2fe90d8210528ffbb06d8ff";
sha256 = "0cpr10n4ps3gcdbcink71ry9hzhdb5rrcysmylybs8h2lzxqgc1i";
};
}
]

0 comments on commit fb61777

Please sign in to comment.