f61cd259d4
GitOrigin-RevId: 82155ff501c7622cb2336646bb62f7624261f6d7
31 lines
668 B
Nix
31 lines
668 B
Nix
{ lib
|
|
, buildGoPackage
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoPackage rec {
|
|
pname = "tfsec";
|
|
version = "0.58.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aquasecurity";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-IapWH7bkjrFmdkGHUHROECmfF3su4HtJJ8Ii5a4GSRg=";
|
|
};
|
|
|
|
goPackagePath = "github.com/aquasecurity/tfsec";
|
|
|
|
ldflags = [
|
|
"-w"
|
|
"-s"
|
|
"-X ${goPackagePath}/version.Version=${version}"
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|