depot/third_party/nixpkgs/pkgs/tools/security/exploitdb/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

44 lines
979 B
Nix

{
lib,
stdenv,
fetchFromGitLab,
makeWrapper,
}:
stdenv.mkDerivation rec {
pname = "exploitdb";
version = "2024-07-17";
src = fetchFromGitLab {
owner = "exploit-database";
repo = "exploitdb";
rev = "refs/tags/${version}";
hash = "sha256-PTBLoFuNU3ZcuvJa22iYWeX5m/SjH/389bxTrKmD+c0=";
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
runHook preInstall
mkdir -p $out/bin $out/share
cp --recursive . $out/share/exploitdb
makeWrapper $out/share/exploitdb/searchsploit $out/bin/searchsploit
runHook postInstall
'';
meta = with lib; {
description = "Archive of public exploits and corresponding vulnerable software";
homepage = "https://gitlab.com/exploit-database/exploitdb";
license = with licenses; [
gpl2Plus
gpl3Plus
mit
];
maintainers = with maintainers; [
applePrincess
fab
];
mainProgram = "searchsploit";
platforms = platforms.unix;
};
}