Unverified Commit bb7edf8b authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

Revert Merge #228209: gtest: 1.12.1 -> 1.13.0

This reverts commit 3c75a19b, reversing
changes made to cfd87655.

Doesn't seem suitable for nixpkgs 23.05 anymore, etc.  See
https://github.com/NixOS/nixpkgs/pull/228209#issuecomment-1536888736
parent 71874015
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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 = [