mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
44 lines
979 B
Nix
44 lines
979 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
makeWrapper,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "exploitdb";
|
|
version = "2024-06-27";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "exploit-database";
|
|
repo = "exploitdb";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-8TYraSY6dA7Q9CE9sTjfteNzrVIc6CuMPD6umOmAoHk=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|