2022-06-16 17:23:12 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, makeWrapper
|
|
|
|
}:
|
2021-05-28 09:39:13 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "exploitdb";
|
2022-10-21 18:38:19 +00:00
|
|
|
version = "2022-10-07";
|
2021-05-28 09:39:13 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "offensive-security";
|
|
|
|
repo = pname;
|
2022-05-18 14:49:53 +00:00
|
|
|
rev = "refs/tags/${version}";
|
2022-10-21 18:38:19 +00:00
|
|
|
hash = "sha256-gO2NCQSmaJA6Bg6LKBc0qVi147KzGp2MtXizpM0v1yQ=";
|
2021-05-28 09:39:13 +00:00
|
|
|
};
|
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
makeWrapper
|
|
|
|
];
|
2021-10-06 13:57:05 +00:00
|
|
|
|
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 ];
|
2022-06-16 17:23:12 +00:00
|
|
|
maintainers = with maintainers; [ applePrincess fab ];
|
2021-09-22 15:38:15 +00:00
|
|
|
mainProgram = "searchsploit";
|
2021-05-28 09:39:13 +00:00
|
|
|
};
|
|
|
|
}
|