diff --git a/pkgs/tools/security/exploitdb/default.nix b/pkgs/tools/security/exploitdb/default.nix index 74ba577a6dc5..cd1b1acccad9 100644 --- a/pkgs/tools/security/exploitdb/default.nix +++ b/pkgs/tools/security/exploitdb/default.nix @@ -1,18 +1,18 @@ { lib , stdenv -, fetchFromGitHub +, fetchFromGitLab , makeWrapper }: stdenv.mkDerivation rec { pname = "exploitdb"; - version = "2022-10-18"; + version = "2022-11-12"; - src = fetchFromGitHub { - owner = "offensive-security"; + src = fetchFromGitLab { + owner = "exploit-database"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-qyRAwy4rGaV7fiU0gwvnf6yT4ZAAXYTtZubh+GtsJU8="; + hash = "sha256-0k9q+xwzIdmhVe5zL1qoE6QzzGV3gm6RL97c7zi3Rg8="; }; nativeBuildInputs = [ @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { ''; meta = with lib; { - homepage = "https://github.com/offensive-security/exploitdb"; + 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 ];