exploitdb: 2021-07-29 -> 2021-07-30

This commit is contained in:
Lein Matsumaru 2021-07-30 09:40:38 +00:00
parent ab776c4158
commit 63c36ec265
No known key found for this signature in database
GPG key ID: AAA50652F0479205

View file

@ -2,19 +2,21 @@
stdenv.mkDerivation rec {
pname = "exploitdb";
version = "2021-07-29";
version = "2021-07-30";
src = fetchFromGitHub {
owner = "offensive-security";
repo = pname;
rev = version;
sha256 = "sha256-/ZNQcfDHFFiI3BFyUTcwDUnhbCdxA4GrS8EIjgYgKw8=";
sha256 = "sha256-7gMhp5MR4RFPv8Ob9SR3XvapPIt5llf3CspW4Yu7Puo=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp --recursive ./* $out/bin
cp ./.searchsploit_rc $out/bin
runHook postInstall
'';
meta = with lib; {