3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/exploitdb/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
896 B
Nix
Raw Normal View History

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