2021-10-06 13:57:05 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, makeWrapper }:
|
2021-05-28 09:39:13 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "exploitdb";
|
2021-10-14 00:43:12 +00:00
|
|
|
version = "2021-10-13";
|
2021-05-28 09:39:13 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "offensive-security";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-10-14 00:43:12 +00:00
|
|
|
sha256 = "sha256-rJRr8MEt3GMNPgC/YvWWs8zh1X0DBstM/UeCMlV7VqI=";
|
2021-05-28 09:39:13 +00:00
|
|
|
};
|
|
|
|
|
2021-10-06 13:57:05 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
2021-05-28 09:39:13 +00:00
|
|
|
installPhase = ''
|
2021-08-05 21:33:18 +00:00
|
|
|
runHook preInstall
|
2021-10-06 13:57:05 +00:00
|
|
|
mkdir -p $out/bin $out/share
|
|
|
|
cp --recursive . $out/share/exploitdb
|
|
|
|
makeWrapper $out/share/exploitdb/searchsploit $out/bin/searchsploit
|
2021-08-05 21:33:18 +00:00
|
|
|
runHook postInstall
|
2021-05-28 09:39:13 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
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 ];
|
2021-09-22 15:38:15 +00:00
|
|
|
mainProgram = "searchsploit";
|
2021-05-28 09:39:13 +00:00
|
|
|
};
|
|
|
|
}
|