39 lines
1,014 B
Nix
39 lines
1,014 B
Nix
|
{ lib
|
||
|
, buildGoModule
|
||
|
, fetchFromGitHub
|
||
|
}:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "tflint-ruleset-google";
|
||
|
version = "0.24.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "terraform-linters";
|
||
|
repo = pname;
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-1eF/uzOYP/gi+ooHN8OfCR2nz+/z98theO0Lr/BBhWM=";
|
||
|
};
|
||
|
|
||
|
vendorHash = "sha256-owpNcsxuP+sG27vv9V7ArMK1NLBNbnw11KpdpVyWAD0=";
|
||
|
|
||
|
# 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 ];
|
||
|
};
|
||
|
}
|