619d6dcc77
GitOrigin-RevId: 870959c7fb3a42af1863bed9e1756086a74eb649
28 lines
735 B
Nix
28 lines
735 B
Nix
{stdenv, lib, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "exploitdb";
|
|
version = "2021-08-21";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "offensive-security";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-3XSk6a8gaCF8X1Plyfyi1Jtfp2sDLgbstv67hvlM3Gk=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin
|
|
cp --recursive ./* $out/bin
|
|
cp ./.searchsploit_rc $out/bin
|
|
runHook postInstall
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|