From c117f55ee223b5e4c865c9f848e9effa395f58ac Mon Sep 17 00:00:00 2001 From: Lein Matsumaru Date: Wed, 22 Sep 2021 05:41:52 +0000 Subject: [PATCH] exploitdb: 2021-09-21 -> 2021-09-22 --- pkgs/tools/security/exploitdb/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/exploitdb/default.nix b/pkgs/tools/security/exploitdb/default.nix index 757e37d70c8b..a2d0ac08d5ed 100644 --- a/pkgs/tools/security/exploitdb/default.nix +++ b/pkgs/tools/security/exploitdb/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "exploitdb"; - version = "2021-09-21"; + version = "2021-09-22"; src = fetchFromGitHub { owner = "offensive-security"; repo = pname; rev = version; - sha256 = "sha256-Nd5pcqVvbytnYiSS6syvcJBTda8vL1N2lPWw9v+FeVA"; + sha256 = "sha256-axA20Ok+5LgtW4Mf1xMM64Gd6C6joBC5isUdZPncgDw="; }; installPhase = '' @@ -24,5 +24,6 @@ stdenv.mkDerivation rec { description = "Archive of public exploits and corresponding vulnerable software"; license = with licenses; [ gpl2Plus gpl3Plus mit ]; maintainers = with maintainers; [ applePrincess ]; + mainProgram = "searchsploit"; }; }