mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
9748477c58
Diff: https://github.com/terraform-linters/tflint/compare/v0.46.1...v0.47.0 Changelog: https://github.com/terraform-linters/tflint/blob/v0.47.0/CHANGELOG.md
54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, runCommand
|
|
, makeWrapper
|
|
, tflint
|
|
, tflint-plugins
|
|
, symlinkJoin
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "tflint";
|
|
version = "0.47.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "terraform-linters";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-YKsX+dAnVRiD48CRHaXzUzfqsqpi/bWHNH9lqzC/TZQ=";
|
|
};
|
|
|
|
vendorHash = "sha256-dgK7o2DJUwAynfekrn6mN8IVxCpJa9b+kiYMQSo0RIg=";
|
|
|
|
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/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mpl20;
|
|
maintainers = [ maintainers.marsam ];
|
|
};
|
|
}
|