lol

Merge pull request #176293 from fabaff/exploitdb-bump

exploitdb: 2022-05-26 -> 2022-06-04

authored by

Fabian Affolter and committed by
GitHub
7848e731 5065e4cc

+11 -5
+11 -5
pkgs/tools/security/exploitdb/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, makeWrapper }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , makeWrapper 5 + }: 2 6 3 7 stdenv.mkDerivation rec { 4 8 pname = "exploitdb"; 5 - version = "2022-05-26"; 9 + version = "2022-06-04"; 6 10 7 11 src = fetchFromGitHub { 8 12 owner = "offensive-security"; 9 13 repo = pname; 10 14 rev = "refs/tags/${version}"; 11 - sha256 = "sha256-yLbPgU8BAAcXZtG4fIo6oVtD1tRBlGgNeFglyGJ8Uhk="; 15 + hash = "sha256-FJg87YWGKZxGgwr14Z+FAIWzgiZR63sFBn4+CpMyQUs="; 12 16 }; 13 17 14 - nativeBuildInputs = [ makeWrapper ]; 18 + nativeBuildInputs = [ 19 + makeWrapper 20 + ]; 15 21 16 22 installPhase = '' 17 23 runHook preInstall ··· 25 31 homepage = "https://github.com/offensive-security/exploitdb"; 26 32 description = "Archive of public exploits and corresponding vulnerable software"; 27 33 license = with licenses; [ gpl2Plus gpl3Plus mit ]; 28 - maintainers = with maintainers; [ applePrincess ]; 34 + maintainers = with maintainers; [ applePrincess fab ]; 29 35 mainProgram = "searchsploit"; 30 36 }; 31 37 }