brave: launch script uses coreutils tools

brave uses cat in its launch script but does not add coreutils
This commit is contained in:
Sven Mattsen 2023-10-01 21:45:03 +02:00
parent a8c0e1f470
commit 696ef87f6f
No known key found for this signature in database
GPG key ID: 23E0FC8068AE39BA

View file

@ -40,6 +40,7 @@
, udev , udev
, wayland , wayland
, xdg-utils , xdg-utils
, coreutils
, xorg , xorg
, zlib , zlib
@ -171,7 +172,7 @@ stdenv.mkDerivation rec {
gappsWrapperArgs+=( gappsWrapperArgs+=(
--prefix LD_LIBRARY_PATH : ${rpath} --prefix LD_LIBRARY_PATH : ${rpath}
--prefix PATH : ${binpath} --prefix PATH : ${binpath}
--suffix PATH : ${lib.makeBinPath [ xdg-utils ]} --suffix PATH : ${lib.makeBinPath [ xdg-utils coreutils ]}
${optionalString (enableFeatures != []) '' ${optionalString (enableFeatures != []) ''
--add-flags "--enable-features=${strings.concatStringsSep "," enableFeatures}" --add-flags "--enable-features=${strings.concatStringsSep "," enableFeatures}"
''} ''}