nixpkgs/pkgs/tools/security/exploitdb/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
935 B
Nix
Raw Normal View History

2022-06-04 23:29:48 +02:00
{ lib
, stdenv
2022-11-16 18:05:22 +01:00
, fetchFromGitLab
2022-06-04 23:29:48 +02:00
, makeWrapper
}:
stdenv.mkDerivation rec {
pname = "exploitdb";
version = "2023-09-09";
2022-11-16 18:05:22 +01:00
src = fetchFromGitLab {
owner = "exploit-database";
repo = pname;
2022-05-13 11:11:55 +02:00
rev = "refs/tags/${version}";
hash = "sha256-AO8iuQZMipt7Va9FUmdT0wCcZhuKNU44jFL7MpVN3AM=";
};
2022-06-04 23:29:48 +02:00
nativeBuildInputs = [
makeWrapper
];
2021-10-05 03:15:06 +02:00
installPhase = ''
2021-07-30 11:40:38 +02:00
runHook preInstall
2021-10-05 03:15:06 +02:00
mkdir -p $out/bin $out/share
cp --recursive . $out/share/exploitdb
makeWrapper $out/share/exploitdb/searchsploit $out/bin/searchsploit
2021-07-30 11:40:38 +02:00
runHook postInstall
'';
meta = with lib; {
2022-11-16 18:05:22 +01:00
homepage = "https://gitlab.com/exploit-database/exploitdb";
description = "Archive of public exploits and corresponding vulnerable software";
license = with licenses; [ gpl2Plus gpl3Plus mit ];
2022-06-04 23:29:48 +02:00
maintainers = with maintainers; [ applePrincess fab ];
2021-09-22 07:41:52 +02:00
mainProgram = "searchsploit";
2023-06-07 22:27:04 +02:00
platforms = platforms.unix;
};
}