Merge pull request #140459 from fabaff/certgraph
This commit is contained in:
commit
1b6a6083ea
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/security/certgraph/default.nix
Normal file
25
pkgs/tools/security/certgraph/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue