From 200bf0a3afe5144cba7f33432f188c0f60333433 Mon Sep 17 00:00:00 2001 From: 06kellyjac Date: Fri, 23 Oct 2020 09:48:39 +0100 Subject: [PATCH] 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 0281a721136..e908c66b0ea 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;