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

34 lines
937 B
Nix
Raw Normal View History

2021-01-12 22:09:15 +01:00
{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "terrascan";
2021-02-21 06:25:30 +01:00
version = "1.3.3";
2021-01-12 22:09:15 +01:00
src = fetchFromGitHub {
owner = "accurics";
repo = pname;
rev = "v${version}";
2021-02-21 06:25:30 +01:00
sha256 = "sha256-mPd4HsWbPUNJTUNjQ5zQztoXZy2b9iLksdGKAjp0A58=";
2021-01-12 22:09:15 +01:00
};
2021-02-21 06:25:30 +01:00
vendorSha256 = "sha256-eNQTJHqOCOTAPO+vil6rkV9bNWZIdXxGQPE4IpETFtA=";
2021-01-12 22:09:15 +01:00
# tests want to download a vulnerable Terraform project
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 ];
};
}