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

34 lines
939 B
Nix
Raw Normal View History

2021-07-03 18:29:11 +03:00
{ lib
, buildGoModule
2021-01-13 00:09:15 +03:00
, fetchFromGitHub
}:
buildGoModule rec {
pname = "terrascan";
2021-10-09 10:26:32 +03:00
version = "1.11.0";
2021-01-13 00:09:15 +03:00
src = fetchFromGitHub {
owner = "accurics";
repo = pname;
rev = "v${version}";
2021-10-09 10:26:32 +03:00
sha256 = "sha256-vKKBbTculy/r1l3lHnHiBZLAwhw/61kDAsypa0o2VXQ=";
2021-01-13 00:09:15 +03:00
};
2021-10-09 10:26:32 +03:00
vendorSha256 = "0vx406y3kj1qmgr1y9vg3rprwjpm5g8p9shmhq28gp7sxz3j82ry";
2021-01-13 00:09:15 +03:00
2021-07-03 18:29:11 +03:00
# Tests want to download a vulnerable Terraform project
2021-01-13 00:09:15 +03: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 ];
};
}