mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
31 lines
881 B
Nix
31 lines
881 B
Nix
{ stdenv, lib, fetchFromGitHub, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "exploitdb";
|
|
version = "2021-10-30";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "offensive-security";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-GwyqtoRxiijF4lewKXX8d/pmO4r+BWn8mfmApGum8/w=";
|
|
};
|
|
|
|
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; {
|
|
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 ];
|
|
mainProgram = "searchsploit";
|
|
};
|
|
}
|