{stdenv, lib, fetchFromGitHub }: stdenv.mkDerivation rec { pname = "exploitdb"; version = "2021-07-27"; src = fetchFromGitHub { owner = "offensive-security"; repo = pname; rev = version; sha256 = "077y7rzvmv0kzwrhm592fsjd2lv839b5wzf59vq9cd3j313bdaab"; }; installPhase = '' mkdir -p $out/bin cp --recursive ./* $out/bin cp ./.searchsploit_rc $out/bin ''; meta = with lib; { 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 ]; }; }