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'
This commit is contained in:
Vladimír Čunát 2024-01-22 18:16:52 +01:00
parent 3a8094730e
commit dd2399ded7
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -7,13 +7,13 @@
stdenv.mkDerivation rec {
pname = "catch2";
version = "3.5.1";
version = "3.5.2";
src = fetchFromGitHub {
owner = "catchorg";
repo = "Catch2";
rev = "v${version}";
hash = "sha256-OyYNUfnu6h1+MfCF8O+awQ4Usad0qrdCtdZhYgOY+Vw=";
hash = "sha256-xGPfXjk+oOnR7JqTrZd2pKJxalrlS8CMs7HWDClXaS8=";
};
nativeBuildInputs = [