Merge pull request #176293 from fabaff/exploitdb-bump

exploitdb: 2022-05-26 -> 2022-06-04
This commit is contained in:
Fabian Affolter 2022-06-05 01:11:47 +02:00 committed by GitHub
commit 7848e7314d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";
};
}