{ lib , buildGoModule , fetchFromGitHub , runCommand , makeWrapper , tflint , tflint-plugins , symlinkJoin }: buildGoModule rec { pname = "tflint"; version = "0.43.0"; src = fetchFromGitHub { owner = "terraform-linters"; repo = pname; rev = "v${version}"; sha256 = "sha256-a5rTG+4qObdmInVZH8QkMdWmRrDA9ZUl2NL5p53D2MY="; }; vendorSha256 = "sha256-hdevIQ0Ugn7+MtvNbF+HjJAMyBtGYuJPCFFcxS8p35E="; doCheck = false; subPackages = [ "." ]; ldflags = [ "-s" "-w" ]; passthru.withPlugins = plugins: let actualPlugins = plugins tflint-plugins; pluginDir = symlinkJoin { name = "tflint-plugin-dir"; paths = [ actualPlugins ]; }; in runCommand "tflint-with-plugins" { nativeBuildInputs = [ makeWrapper ]; } '' makeWrapper ${tflint}/bin/tflint $out/bin/tflint \ --set TFLINT_PLUGIN_DIR "${pluginDir}" ''; meta = with lib; { description = "Terraform linter focused on possible errors, best practices, and so on"; homepage = "https://github.com/terraform-linters/tflint"; changelog = "https://github.com/terraform-linters/tflint/raw/v${version}/CHANGELOG.md"; license = licenses.mpl20; maintainers = [ maintainers.marsam ]; }; }