imagelol: fix for case-sensitive filesystems

This commit is contained in:
Dmitry Kalinkin
2021-12-17 10:10:16 -05:00
parent 001096a857
commit 173bcf18a4
+1 -1
View File
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
# fix for case-sensitive filesystems
# https://github.com/MCredstoner2004/ImageLOL/issues/1
postPatch = ''
mv ImageLOL src
mv imagelol src
substituteInPlace CMakeLists.txt \
--replace 'add_subdirectory("imagelol")' 'add_subdirectory("src")'
'';