3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/exploitdb/default.nix

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

38 lines
903 B
Nix
Raw Normal View History

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