2021-10-05 01:15:06 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, makeWrapper }:
|
2021-05-26 02:02:01 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "exploitdb";
|
2021-10-20 11:45:36 +00:00
|
|
|
version = "2021-10-20";
|
2021-05-26 02:02:01 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "offensive-security";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-10-20 11:45:36 +00:00
|
|
|
sha256 = "sha256-IHZpfUJA0h1dDkq3pp+x+gT9RSTMq9egHyXGi6ZmBP8=";
|
2021-05-26 02:02:01 +00:00
|
|
|
};
|
|
|
|
|
2021-10-05 01:15:06 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
2021-05-26 02:02:01 +00:00
|
|
|
installPhase = ''
|
2021-07-30 09:40:38 +00:00
|
|
|
runHook preInstall
|
2021-10-05 01:15:06 +00:00
|
|
|
mkdir -p $out/bin $out/share
|
|
|
|
cp --recursive . $out/share/exploitdb
|
|
|
|
makeWrapper $out/share/exploitdb/searchsploit $out/bin/searchsploit
|
2021-07-30 09:40:38 +00:00
|
|
|
runHook postInstall
|
2021-05-26 02:02:01 +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 05:41:52 +00:00
|
|
|
mainProgram = "searchsploit";
|
2021-05-26 02:02:01 +00:00
|
|
|
};
|
|
|
|
}
|