about summary refs log tree commit diff
path: root/pkgs/tools/security/exploitdb
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-06-04 23:29:48 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2022-06-04 23:31:26 +0200
commit3a7775df4d7b2e54d492b24211385fc1cb8e53f0 (patch)
tree2535629c7a505a4d3519f5e437a2cfa4118ebc8c /pkgs/tools/security/exploitdb
parent63f15db5291aec276924d907d3e083e74d68e8b9 (diff)
exploitdb: 2022-05-26 -> 2022-06-04
Diffstat (limited to 'pkgs/tools/security/exploitdb')
-rw-r--r--pkgs/tools/security/exploitdb/default.nix16
1 files changed, 11 insertions, 5 deletions
diff --git a/pkgs/tools/security/exploitdb/default.nix b/pkgs/tools/security/exploitdb/default.nix
index 40bab69b763a8..8847f5aeca438 100644
--- a/pkgs/tools/security/exploitdb/default.nix
+++ b/pkgs/tools/security/exploitdb/default.nix
@@ -1,17 +1,23 @@
-{ stdenv, lib, fetchFromGitHub, makeWrapper }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, makeWrapper
+}:
 
 stdenv.mkDerivation rec {
   pname = "exploitdb";
-  version = "2022-05-26";
+  version = "2022-06-04";
 
   src = fetchFromGitHub {
     owner = "offensive-security";
     repo = pname;
     rev = "refs/tags/${version}";
-    sha256 = "sha256-yLbPgU8BAAcXZtG4fIo6oVtD1tRBlGgNeFglyGJ8Uhk=";
+    hash = "sha256-FJg87YWGKZxGgwr14Z+FAIWzgiZR63sFBn4+CpMyQUs=";
   };
 
-  nativeBuildInputs = [ makeWrapper ];
+  nativeBuildInputs = [
+    makeWrapper
+  ];
 
   installPhase = ''
     runHook preInstall
@@ -25,7 +31,7 @@ stdenv.mkDerivation rec {
     homepage = "https://github.com/offensive-security/exploitdb";
     description = "Archive of public exploits and corresponding vulnerable software";
     license = with licenses; [ gpl2Plus gpl3Plus mit ];
-    maintainers = with maintainers; [ applePrincess ];
+    maintainers = with maintainers; [ applePrincess fab ];
     mainProgram = "searchsploit";
   };
 }