mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 05:13:04 +00:00
64 lines
1.3 KiB
Nix
64 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
runCommand,
|
|
makeWrapper,
|
|
tflint,
|
|
tflint-plugins,
|
|
symlinkJoin,
|
|
}:
|
|
|
|
let
|
|
pname = "tflint";
|
|
version = "0.52.0";
|
|
in
|
|
buildGoModule {
|
|
inherit pname version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "terraform-linters";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-H27krznCX00F0EZ4ahdsMVh+wcAAUC/ErQac9Y4QaJs=";
|
|
};
|
|
|
|
vendorHash = "sha256-jTwzheC/BtcuLGwtLanOccbidOPCHmqxJ4Mwhsid6jY=";
|
|
|
|
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 = {
|
|
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 = lib.licenses.mpl20;
|
|
maintainers = with lib.maintainers; [ momeemt ];
|
|
};
|
|
}
|