587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
38 lines
1,014 B
Nix
38 lines
1,014 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "tflint-ruleset-google";
|
|
version = "0.27.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "terraform-linters";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-APdAm7gBEA6LHYV3u7j3HtFmzkUqeABqOj5q3rwPO40=";
|
|
};
|
|
|
|
vendorHash = "sha256-n+nnftyNvCGVgEkYQIfVL7TS2QP8WpKb7l9jfeutJxw=";
|
|
|
|
# upstream Makefile also does a go test $(go list ./... | grep -v integration)
|
|
preCheck = ''
|
|
rm integration/integration_test.go
|
|
'';
|
|
|
|
subPackages = [ "." ];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/github.com/terraform-linters/${pname}/${version}
|
|
mv $out/bin/${pname} $out/github.com/terraform-linters/${pname}/${version}/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/terraform-linters/tflint-ruleset-google";
|
|
description = "TFLint ruleset plugin for Terraform Google Provider";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ john-rodewald ];
|
|
license = with licenses; [ mpl20 ];
|
|
};
|
|
}
|