Revert Merge #228209: gtest: 1.12.1 -> 1.13.0

This reverts commit 3c75a19be6, reversing
changes made to cfd87655c8.

Doesn't seem suitable for nixpkgs 23.05 anymore, etc.  See
https://github.com/NixOS/nixpkgs/pull/228209#issuecomment-1536888736
This commit is contained in:
Vladimír Čunát 2023-05-10 23:13:49 +02:00
parent 71874015ba
commit bb7edf8b8f
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

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