fix glava wants to load shaders from /etc/xdg/glava

This commit is contained in:
mlatus 2019-11-24 23:53:54 +08:00
parent c383268e11
commit 41946d967f

View File

@ -8,7 +8,7 @@ let
wrapperScript = writeScript "glava" '' wrapperScript = writeScript "glava" ''
#!${runtimeShell} #!${runtimeShell}
case "$1" in case "$1" in
--copy-config) --copy-config|-C)
# The binary would symlink it, which won't work in Nix because the # The binary would symlink it, which won't work in Nix because the
# garbage collector will eventually remove the original files after # garbage collector will eventually remove the original files after
# updates # updates
@ -45,6 +45,14 @@ in
]; ];
preConfigure = '' preConfigure = ''
for f in $(find -type f);do
substituteInPlace $f \
--replace /etc/xdg $out/etc/xdg
done
substituteInPlace Makefile \
--replace '$(DESTDIR)$(SHADERDIR)' '$(SHADERDIR)'
substituteInPlace Makefile \ substituteInPlace Makefile \
--replace 'unknown' 'v${version}' --replace 'unknown' 'v${version}'