imagelol: fix for case-sensitive filesystems

This commit is contained in:
Dmitry Kalinkin 2021-12-17 09:52:49 -05:00
parent 001096a857
commit 173bcf18a4
No known key found for this signature in database
GPG key ID: 5157B3EC8B2CA333

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")'
'';