depot/third_party/nixpkgs/pkgs/tools/security/exploitdb/default.nix
Default email 472aeafc57 Project import generated by Copybara.
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
2024-10-04 18:56:33 +02:00

44 lines
979 B
Nix

{
lib,
stdenv,
fetchFromGitLab,
makeWrapper,
}:
stdenv.mkDerivation rec {
pname = "exploitdb";
version = "2024-10-02";
src = fetchFromGitLab {
owner = "exploit-database";
repo = "exploitdb";
rev = "refs/tags/${version}";
hash = "sha256-uNFBMZ6pk/xT6OZMb8EKax141lc+uumQl3xbihFMYAI=";
};
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;
};
}