mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
33 lines
937 B
Nix
33 lines
937 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "terrascan";
|
|
version = "1.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "accurics";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-pQuCVDXO9sXqCayoSAuxnzUBURJN+W2MZlzC/nV0wUc=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-W3RXjjR90nfidkUldKNK0QAmI78SvtgHrZTWMzpqtMs=";
|
|
|
|
# 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 ];
|
|
};
|
|
}
|