Merge pull request #233741 from hzeller/20230523-update-doctest

doctest: 2.4.9 -> 2.4.11
This commit is contained in:
Weijia Wang 2023-05-26 18:13:48 +03:00 committed by GitHub
commit bb37145bf7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,17 +2,19 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "doctest"; pname = "doctest";
version = "2.4.9"; version = "2.4.11";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "doctest"; owner = "doctest";
repo = "doctest"; repo = "doctest";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-ugmkeX2PN4xzxAZpWgswl4zd2u125Q/ADSKzqTfnd94="; sha256 = "sha256-hotO6QVpPn8unYTaQHFgi40A3oLUd++I3aTe293e4Aw=";
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
doCheck = true;
meta = with lib; { meta = with lib; {
homepage = "https://github.com/doctest/doctest"; homepage = "https://github.com/doctest/doctest";
description = "The fastest feature-rich C++11/14/17/20 single-header testing framework"; description = "The fastest feature-rich C++11/14/17/20 single-header testing framework";