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-15 13:37:04 -07:00 committed by Raphael Megzari
parent cfef5c8d85
commit c4af233882

View File

@ -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
'';