mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
38 lines
903 B
Nix
38 lines
903 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitLab
|
|
, makeWrapper
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "exploitdb";
|
|
version = "2023-02-03";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "exploit-database";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-uTyUACY9Pm+gMuLrttGCNZ/UQaOW/h12ysY/noTkw7A=";
|
|
};
|
|
|
|
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://gitlab.com/exploit-database/exploitdb";
|
|
description = "Archive of public exploits and corresponding vulnerable software";
|
|
license = with licenses; [ gpl2Plus gpl3Plus mit ];
|
|
maintainers = with maintainers; [ applePrincess fab ];
|
|
mainProgram = "searchsploit";
|
|
};
|
|
}
|