unittest-cpp: add gcc12 patch

This commit is contained in:
Fabián Heredia Montiel 2022-11-19 01:12:13 -06:00
parent 713db8d8f8
commit 99c7bd7302

View file

@ -1,4 +1,9 @@
{lib, stdenv, fetchFromGitHub, cmake}:
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, cmake
}:
stdenv.mkDerivation rec {
pname = "unittest-cpp";
@ -11,6 +16,14 @@ stdenv.mkDerivation rec {
sha256 = "0sxb3835nly1jxn071f59fwbdzmqi74j040r81fanxyw3s1azw0i";
};
patches = [
# GCC12 Patch
(fetchpatch {
url = "https://github.com/unittest-cpp/unittest-cpp/pull/185/commits/f361c2a1034c02ba8059648f9a04662d6e2b5553.patch";
hash = "sha256-xyhV2VBelw/uktUXSZ3JBxgG+8/Mout/JiXEZVV2+2Y=";
})
];
nativeBuildInputs = [ cmake ];
doCheck = false;