2022-11-18T10:31:59 exploitdb 2022-10-18 -> 2022-11-12 https://repology.org/metapackage/exploitdb/versions 2022-11-18T10:32:01 attrpath: exploitdb 2022-11-18T10:32:02 Checking auto update branch... 2022-11-18T10:32:02 No auto update branch exists 2022-11-18T10:32:02 Old version 2022-10-18" not present in master derivation file with contents: { lib , stdenv , fetchFromGitLab , makeWrapper }: stdenv.mkDerivation rec { pname = "exploitdb"; version = "2022-11-12"; src = fetchFromGitLab { owner = "exploit-database"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-0k9q+xwzIdmhVe5zL1qoE6QzzGV3gm6RL97c7zi3Rg8="; }; 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"; }; }