From 3a7775df4d7b2e54d492b24211385fc1cb8e53f0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 4 Jun 2022 23:29:48 +0200 Subject: [PATCH] exploitdb: 2022-05-26 -> 2022-06-04 --- pkgs/tools/security/exploitdb/default.nix | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/security/exploitdb/default.nix b/pkgs/tools/security/exploitdb/default.nix index 40bab69b763..8847f5aeca4 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"; }; }