Merge pull request #140459 from fabaff/certgraph

This commit is contained in:
Sandro 2021-10-04 11:29:43 +02:00 committed by GitHub
commit 1b6a6083ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "certgraph";
version = "20210224";
src = fetchFromGitHub {
owner = "lanrat";
repo = pname;
rev = version;
sha256 = "14l2bls25xwd8gnsmshc588br72rwz1s0gjnsnqksri4ksqkdqlz";
};
vendorSha256 = "1vih64z0zwmaflc0pwvnwyj5fhrc8qfp0kvrz73nnfpcrcan2693";
meta = with lib; {
description = "Intelligence tool to crawl the graph of certificate alternate names";
homepage = "https://github.com/lanrat/certgraph";
license = with licenses; [ gpl2Only ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -236,6 +236,8 @@ with pkgs;
cereal = callPackage ../development/libraries/cereal { };
certgraph = callPackage ../tools/security/certgraph { };
cewl = callPackage ../tools/security/cewl { };
checkov = callPackage ../development/tools/analysis/checkov {};