mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 03:12:51 +00:00
55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, runCommand
|
|
, makeWrapper
|
|
, tflint
|
|
, tflint-plugins
|
|
, symlinkJoin
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "tflint";
|
|
version = "0.51.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "terraform-linters";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-tsp8+7LWX0W+jVI+O69LNiOCeUlSo6cN1NP9Y9NHonc=";
|
|
};
|
|
|
|
vendorHash = "sha256-JbB78fBOb4dCeJcYLNb/tTJoj+tHqqlyS4caovYlVGE=";
|
|
|
|
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";
|
|
mainProgram = "tflint";
|
|
homepage = "https://github.com/terraform-linters/tflint";
|
|
changelog = "https://github.com/terraform-linters/tflint/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mpl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|