3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/analysis/tfsec/default.nix

25 lines
640 B
Nix
Raw Normal View History

2019-11-24 09:20:00 +00:00
{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "tfsec";
version = "0.36.10";
2019-11-24 09:20:00 +00:00
src = fetchFromGitHub {
owner = "tfsec";
2019-11-24 09:20:00 +00:00
repo = pname;
rev = "v${version}";
sha256 = "11kv13d4cw515r79azfha1ksmvsha1rvg0jak9nvz9ggivyn0s7a";
2019-11-24 09:20:00 +00:00
};
goPackagePath = "github.com/tfsec/tfsec";
2019-11-24 09:20:00 +00:00
2020-07-09 00:55:18 +01:00
buildFlagsArray = [ "-ldflags=-s -w -X ${goPackagePath}/version.Version=${version}" ];
2019-11-24 09:20:00 +00:00
meta = with lib; {
homepage = "https://github.com/tfsec/tfsec";
2019-11-24 09:20:00 +00:00
description = "Static analysis powered security scanner for your terraform code";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}