571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
36 lines
1.0 KiB
Nix
36 lines
1.0 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "terrascan";
|
|
version = "1.19.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "accurics";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-4XIhmUUOSROwEPSB+DcMOfG5+q/pmWkVUwKGrWVcNtM=";
|
|
};
|
|
|
|
vendorHash = "sha256-yQien8v7Ru+JWLou9QfyKZAR2ENMHO2aF2vzuWyQcjY=";
|
|
|
|
# Tests want to download a vulnerable Terraform project
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Detect compliance and security violations across Infrastructure";
|
|
mainProgram = "terrascan";
|
|
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";
|
|
changelog = "https://github.com/tenable/terrascan/blob/v${version}/CHANGELOG.md";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|