summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-10-04 11:29:43 +0200
committerGitHub <noreply@github.com>2021-10-04 11:29:43 +0200
commit1b6a6083eaba06fd8341aef99872cffe26c9c717 (patch)
treeed991c00fd3540cc179e5bee9167ad3e13c2dfb3 /pkgs/tools/security
parentd145117679d763c054e23b6638a1dd2881e24260 (diff)
parent228077302ca9cb2f909ffb2f4886385c0343baf7 (diff)
downloadnixpkgs-1b6a6083eaba06fd8341aef99872cffe26c9c717.tar
nixpkgs-1b6a6083eaba06fd8341aef99872cffe26c9c717.tar.gz
nixpkgs-1b6a6083eaba06fd8341aef99872cffe26c9c717.tar.bz2
nixpkgs-1b6a6083eaba06fd8341aef99872cffe26c9c717.tar.lz
nixpkgs-1b6a6083eaba06fd8341aef99872cffe26c9c717.tar.xz
nixpkgs-1b6a6083eaba06fd8341aef99872cffe26c9c717.tar.zst
nixpkgs-1b6a6083eaba06fd8341aef99872cffe26c9c717.zip
Merge pull request #140459 from fabaff/certgraph
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/certgraph/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/tools/security/certgraph/default.nix b/pkgs/tools/security/certgraph/default.nix
new file mode 100644
index 00000000000..f15ec8f89e0
--- /dev/null
+++ b/pkgs/tools/security/certgraph/default.nix
@@ -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 ];
+  };
+}