summary refs log tree commit diff
path: root/pkgs/tools/security/certgraph
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-10-04 10:59:37 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-10-04 10:59:37 +0200
commit228077302ca9cb2f909ffb2f4886385c0343baf7 (patch)
tree2166d7e6415074519b9991c099a6056c1b78dcc4 /pkgs/tools/security/certgraph
parent6aae893f3d0f367e5c4da8f688e034ad792cca7f (diff)
downloadnixpkgs-228077302ca9cb2f909ffb2f4886385c0343baf7.tar
nixpkgs-228077302ca9cb2f909ffb2f4886385c0343baf7.tar.gz
nixpkgs-228077302ca9cb2f909ffb2f4886385c0343baf7.tar.bz2
nixpkgs-228077302ca9cb2f909ffb2f4886385c0343baf7.tar.lz
nixpkgs-228077302ca9cb2f909ffb2f4886385c0343baf7.tar.xz
nixpkgs-228077302ca9cb2f909ffb2f4886385c0343baf7.tar.zst
nixpkgs-228077302ca9cb2f909ffb2f4886385c0343baf7.zip
certgraph: init at 20210224
Diffstat (limited to 'pkgs/tools/security/certgraph')
-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 ];
+  };
+}