depot/third_party/nixpkgs/pkgs/tools/security/exploitdb/default.nix
Default email d5f4a57cbf Project import generated by Copybara.
GitOrigin-RevId: ce5e4a6ef2e59d89a971bc434ca8ca222b9c7f5e
2023-08-10 09:59:29 +02:00

38 lines
935 B
Nix

{ lib
, stdenv
, fetchFromGitLab
, makeWrapper
}:
stdenv.mkDerivation rec {
pname = "exploitdb";
version = "2023-08-05";
src = fetchFromGitLab {
owner = "exploit-database";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-s0CYG3sRJniz6AHPvWvYjhRZoepGY//sQbvWAIZmf38=";
};
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;
};
}