catch2_3: 3.5.1 -> 3.5.2

https://github.com/catchorg/Catch2/releases/tag/v3.5.2

This addresses an issue shown when compiling tests in tiledb package:
include/catch2/internal/catch_clara.hpp:676:24:
error: cannot bind non-const lvalue reference of type 'Catch::Clara::Parser&'
to an rvalue of type 'Catch::Clara::Parser'

+2 -2
+2 -2
pkgs/development/libraries/catch2/3.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "catch2"; 10 - version = "3.5.1"; 10 + version = "3.5.2"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "catchorg"; 14 14 repo = "Catch2"; 15 15 rev = "v${version}"; 16 - hash = "sha256-OyYNUfnu6h1+MfCF8O+awQ4Usad0qrdCtdZhYgOY+Vw="; 16 + hash = "sha256-xGPfXjk+oOnR7JqTrZd2pKJxalrlS8CMs7HWDClXaS8="; 17 17 }; 18 18 19 19 nativeBuildInputs = [