2021-05-26 04:02:01 +02:00
|
|
|
{stdenv, lib, fetchFromGitHub }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "exploitdb";
|
2021-06-29 20:55:52 +02:00
|
|
|
version = "2021-06-29";
|
2021-05-26 04:02:01 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "offensive-security";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-06-29 20:55:52 +02:00
|
|
|
sha256 = "sha256-RF7+fo6I7rz7PTSHRDikeRpM0f4Bugn+Tt5Z7mjIKIM=";
|
2021-05-26 04:02:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp --recursive ./* $out/bin
|
|
|
|
cp ./.searchsploit_rc $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|