nixpkgs/pkgs/tools/security/terrascan/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
938 B
Nix
Raw Normal View History

2021-07-03 15:29:11 +00:00
{ lib
, buildGoModule
2021-01-12 21:09:15 +00:00
, fetchFromGitHub
}:
buildGoModule rec {
pname = "terrascan";
2022-06-15 14:22:43 +00:00
version = "1.15.2";
2021-01-12 21:09:15 +00:00
src = fetchFromGitHub {
owner = "accurics";
repo = pname;
rev = "v${version}";
2022-06-15 14:22:43 +00:00
sha256 = "sha256-lxieqHOmkazkBnwfKLVYy0TE7rfrKcLBENeABdmWpXI=";
2021-01-12 21:09:15 +00:00
};
2022-05-18 17:21:40 +00:00
vendorSha256 = "sha256-EfHcCk2NkicSPeJYgHJT2kh9EwLldksET75ZQambrWA=";
2021-01-12 21:09:15 +00:00
2021-07-03 15:29:11 +00:00
# Tests want to download a vulnerable Terraform project
2021-01-12 21:09:15 +00:00
doCheck = false;
meta = with lib; {
description = "Detect compliance and security violations across Infrastructure";
longDescription = ''
Detect compliance and security violations across Infrastructure as Code to
mitigate risk before provisioning cloud native infrastructure. It contains
500+ polices and support for Terraform and Kubernetes.
'';
homepage = "https://github.com/accurics/terrascan";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}