889482aab3
GitOrigin-RevId: f2537a505d45c31fe5d9c27ea9829b6f4c4e6ac5
39 lines
942 B
Nix
39 lines
942 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "tfsec";
|
|
version = "1.26.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aquasecurity";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-IYrLf2StBzIIl6xhN0gbgKGeopetuAko+kXjvlXAsBg=";
|
|
};
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/aquasecurity/tfsec/version.Version=${version}"
|
|
## not sure if this is needed (https://github.com/aquasecurity/tfsec/blob/master/.goreleaser.yml#L6)
|
|
# "-extldflags '-fno-PIC -static'"
|
|
];
|
|
|
|
vendorSha256 = "sha256-AayEYoybJGWdRES73wlf7pLpMukBbuxtaOU/RT9ObkI=";
|
|
|
|
subPackages = [
|
|
"cmd/tfsec"
|
|
"cmd/tfsec-docs"
|
|
"cmd/tfsec-checkgen"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Static analysis powered security scanner for terraform code";
|
|
homepage = "https://github.com/aquasecurity/tfsec";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab marsam peterromfeldhk ];
|
|
};
|
|
}
|