exploitdb 2023-10-24 -> 2023-10-31 https://repology.org/project/exploitdb/versions attrpath: exploitdb Checking auto update branch... No auto update branch exists Old version 2023-10-24" not present in master derivation file with contents: { lib , stdenv , fetchFromGitLab , makeWrapper }: stdenv.mkDerivation rec { pname = "exploitdb"; version = "2023-10-26"; src = fetchFromGitLab { owner = "exploit-database"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-P+T3TM2MeHaN+ApgOMEFmyWv+AzQshVUfhbI+n/vozs="; }; 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; }; }