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 21:29:48 +00:00
{ lib
, stdenv
2022-11-16 17:05:22 +00:00
, fetchFromGitLab
2022-06-04 21:29:48 +00:00
, makeWrapper
}:
stdenv.mkDerivation rec {
pname = "exploitdb";
version = "2023-08-03";
2022-11-16 17:05:22 +00:00
src = fetchFromGitLab {
owner = "exploit-database";
repo = pname;
2022-05-13 09:11:55 +00:00
rev = "refs/tags/${version}";
hash = "sha256-mS77s3wBVGRxGrPxjOCi5QN82N2N4pIPrxz5JczaIBc=";
};
2022-06-04 21:29:48 +00:00
nativeBuildInputs = [
makeWrapper
];
2021-10-05 01:15:06 +00:00
installPhase = ''
2021-07-30 09:40:38 +00:00
runHook preInstall
2021-10-05 01:15:06 +00:00
mkdir -p $out/bin $out/share
cp --recursive . $out/share/exploitdb
makeWrapper $out/share/exploitdb/searchsploit $out/bin/searchsploit
2021-07-30 09:40:38 +00:00
runHook postInstall
'';
meta = with lib; {
2022-11-16 17:05:22 +00: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 21:29:48 +00:00
maintainers = with maintainers; [ applePrincess fab ];
2021-09-22 05:41:52 +00:00
mainProgram = "searchsploit";
2023-06-07 20:27:04 +00:00
platforms = platforms.unix;
};
}