libtins: fix gtest subproject

This matches the submodule used by upstream.
The way this was done will break once gtest is updated to v1.11.0
(currently in staging-next).
This commit is contained in:
Ryan Burns
2021-08-16 17:28:35 +09:00
committed by Raphael Megzari
parent cfef5c8d85
commit c4af233882
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
postPatch = ''
rm -rf googletest
cp -r ${gtest.src}/googletest googletest
cp -r ${gtest.src} googletest
chmod -R a+w googletest
'';