mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
f286ab05a6
Diff: https://gitlab.com/exploit-database/exploitdb/-/compare/refs/tags/2023-10-10...2023-10-14
39 lines
935 B
Nix
39 lines
935 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitLab
|
|
, makeWrapper
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "exploitdb";
|
|
version = "2023-10-14";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "exploit-database";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-Hhk7P6mUDxTGeAq1qbtCPV0Npm7ab/F++Q0cL5rJifc=";
|
|
};
|
|
|
|
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";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|