megapixels: fix wrapper arguments escaping

This commit is contained in:
Naïm Favier 2022-05-06 18:27:02 +02:00
parent 8fe47199cc
commit 545a1eddcd
No known key found for this signature in database
GPG key ID: 49B07322580B7EE2

View file

@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
preFixup = optionalString (tiffSupport || jpgSupport) ''
gappsWrapperArgs+=(
--prefix PATH : ${runtimePath}
--prefix PATH : ${lib.escapeShellArg runtimePath}
)
'';