mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Merge pull request #176293 from fabaff/exploitdb-bump
exploitdb: 2022-05-26 -> 2022-06-04
This commit is contained in:
commit
7848e7314d
1 changed files with 11 additions and 5 deletions
|
@ -1,17 +1,23 @@
|
|||
{ stdenv, lib, fetchFromGitHub, makeWrapper }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, makeWrapper
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "exploitdb";
|
||||
version = "2022-05-26";
|
||||
version = "2022-06-04";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "offensive-security";
|
||||
repo = pname;
|
||||
rev = "refs/tags/${version}";
|
||||
sha256 = "sha256-yLbPgU8BAAcXZtG4fIo6oVtD1tRBlGgNeFglyGJ8Uhk=";
|
||||
hash = "sha256-FJg87YWGKZxGgwr14Z+FAIWzgiZR63sFBn4+CpMyQUs=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
nativeBuildInputs = [
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
@ -25,7 +31,7 @@ stdenv.mkDerivation rec {
|
|||
homepage = "https://github.com/offensive-security/exploitdb";
|
||||
description = "Archive of public exploits and corresponding vulnerable software";
|
||||
license = with licenses; [ gpl2Plus gpl3Plus mit ];
|
||||
maintainers = with maintainers; [ applePrincess ];
|
||||
maintainers = with maintainers; [ applePrincess fab ];
|
||||
mainProgram = "searchsploit";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue