Merge pull request #228209 from cbourjau/update-gtest

gtest: 1.12.1 -> 1.13.0
This commit is contained in:
Sandro 2023-05-05 21:13:25 +02:00 committed by GitHub
commit 3c75a19be6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,15 +8,15 @@
stdenv.mkDerivation rec {
pname = "gtest";
version = "1.12.1";
version = "1.13.0";
outputs = [ "out" "dev" ];
src = fetchFromGitHub {
owner = "google";
repo = "googletest";
rev = "release-${version}";
hash = "sha256-W+OxRTVtemt2esw4P7IyGWXOonUN5ZuscjvzqkYvZbM=";
rev = "v${version}";
hash = "sha256-LVLEn+e7c8013pwiLzJiiIObyrlbBHYaioO/SWbItPQ=";
};
patches = [