Merge pull request #302792 from fabaff/exploitdb-bump

exploitdb: 2024-04-04 -> 2024-04-09
This commit is contained in:
Nick Cao 2024-04-09 09:42:50 -04:00 committed by GitHub
commit fe698eb273
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 19 additions and 13 deletions

View File

@ -1,23 +1,22 @@
{ lib
, stdenv
, fetchFromGitLab
, makeWrapper
{
lib,
stdenv,
fetchFromGitLab,
makeWrapper,
}:
stdenv.mkDerivation rec {
pname = "exploitdb";
version = "2024-04-04";
version = "2024-04-09";
src = fetchFromGitLab {
owner = "exploit-database";
repo = pname;
repo = "exploitdb";
rev = "refs/tags/${version}";
hash = "sha256-qWmHY2CNZBY3kaWaru7jXJuPZOH96+Ea/8pUT0oKHF0=";
hash = "sha256-dNWApfe7Oxpm9SGX4L1lXpM2DUWXtLsg5RF+OkGlWcs=";
};
nativeBuildInputs = [
makeWrapper
];
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
runHook preInstall
@ -28,10 +27,17 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
homepage = "https://gitlab.com/exploit-database/exploitdb";
description = "Archive of public exploits and corresponding vulnerable software";
license = with licenses; [ gpl2Plus gpl3Plus mit ];
maintainers = with maintainers; [ applePrincess fab ];
homepage = "https://gitlab.com/exploit-database/exploitdb";
license = with licenses; [
gpl2Plus
gpl3Plus
mit
];
maintainers = with maintainers; [
applePrincess
fab
];
mainProgram = "searchsploit";
platforms = platforms.unix;
};