mesa: fix datadir location

This commit is contained in:
ash lea 2021-07-23 14:24:41 -07:00 committed by Frederik Rietdijk
parent 34cf1e9e17
commit 1b3ba289b2

View file

@ -83,9 +83,9 @@ self = stdenv.mkDerivation {
# The drirc.d directory cannot be installed to $drivers as that would cause a cyclic dependency:
substituteInPlace src/util/xmlconfig.c --replace \
'DATADIR "/drirc.d"' '"${placeholder "out"}/drirc.d"'
'DATADIR "/drirc.d"' '"${placeholder "out"}/share/drirc.d"'
substituteInPlace src/util/meson.build --replace \
"get_option('datadir')" "'${placeholder "out"}'"
"get_option('datadir')" "'${placeholder "out"}/share'"
'' + lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
substituteInPlace meson.build --replace \
"find_program('nm')" \