terragrunt: clean and sort arguments
lib was already imported so no need for stdenv.lib sorted arguments into order of use
This commit is contained in:
parent
2cb651ad14
commit
200bf0a3af
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue