From 200bf0a3afe5144cba7f33432f188c0f60333433 Mon Sep 17 00:00:00 2001 From: 06kellyjac Date: Fri, 23 Oct 2020 09:48:39 +0100 Subject: [PATCH 1/3] terragrunt: clean and sort arguments lib was already imported so no need for stdenv.lib sorted arguments into order of use --- pkgs/applications/networking/cluster/terragrunt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terragrunt/default.nix b/pkgs/applications/networking/cluster/terragrunt/default.nix index 0281a7211368..e908c66b0ea3 100644 --- a/pkgs/applications/networking/cluster/terragrunt/default.nix +++ b/pkgs/applications/networking/cluster/terragrunt/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoModule, fetchFromGitHub, terraform, makeWrapper }: +{ lib, buildGoModule, fetchFromGitHub, makeWrapper, terraform }: buildGoModule rec { pname = "terragrunt"; @@ -24,7 +24,7 @@ buildGoModule rec { --set TERRAGRUNT_TFPATH ${lib.getBin terraform.full}/bin/terraform ''; - meta = with stdenv.lib; { + 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/"; license = licenses.mit; From 268f5110f66f4f346f4f879e1b5544e6c5014368 Mon Sep 17 00:00:00 2001 From: 06kellyjac Date: Fri, 23 Oct 2020 09:49:41 +0100 Subject: [PATCH 2/3] terragrunt: add jk as a maintainer Add jk (myself) as a maintainer for terragrunt --- pkgs/applications/networking/cluster/terragrunt/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/cluster/terragrunt/default.nix b/pkgs/applications/networking/cluster/terragrunt/default.nix index e908c66b0ea3..1bde33cdcfeb 100644 --- a/pkgs/applications/networking/cluster/terragrunt/default.nix +++ b/pkgs/applications/networking/cluster/terragrunt/default.nix @@ -28,6 +28,6 @@ buildGoModule rec { description = "A thin wrapper for Terraform that supports locking for Terraform state and enforces best practices"; homepage = "https://github.com/gruntwork-io/terragrunt/"; license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; + maintainers = with maintainers; [ peterhoeg jk ]; }; } From 10c152cb584213f7ce26bdbd83f90dddbc11c199 Mon Sep 17 00:00:00 2001 From: 06kellyjac Date: Fri, 23 Oct 2020 09:50:15 +0100 Subject: [PATCH 3/3] terragrunt: 0.25.4 -> 0.25.5 --- pkgs/applications/networking/cluster/terragrunt/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terragrunt/default.nix b/pkgs/applications/networking/cluster/terragrunt/default.nix index 1bde33cdcfeb..e3f2adacfb21 100644 --- a/pkgs/applications/networking/cluster/terragrunt/default.nix +++ b/pkgs/applications/networking/cluster/terragrunt/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "terragrunt"; - version = "0.25.4"; + version = "0.25.5"; src = fetchFromGitHub { owner = "gruntwork-io"; repo = pname; rev = "v${version}"; - sha256 = "1c8rfx7sks8j74f3jjsl5azkhi7jvcfp8lmd9z553nal4fy8ksb6"; + sha256 = "19rsnhws4cvssxjmm22j746jck0wzrhwi24hnlwxkdaaw92yd36l"; }; - vendorSha256 = "0f466qn5vp74mwx9s4rcbw1x793w8hr5dcf2c12sgshya1bxs4nl"; + vendorSha256 = "0l85jx02dj9qvxs8l0ln5fln8vssi0fisblm5i1scz9x4a1jqg9n"; doCheck = false;