chromium: avoid references to original version

When enableWideVine is true, then there is a second layer so
we need to avoid creating symlinks to the original derivation.
This commit is contained in:
Josh Hoffer
2026-06-24 11:04:02 -07:00
parent 5eccbb52c3
commit ae6601a6c3
@@ -204,7 +204,7 @@ stdenv.mkDerivation {
ln -s "$out/bin/chromium" "$out/bin/chromium-browser"
mkdir -p "$out/share"
for f in '${chromium.browser}'/share/*; do
for f in '${chromiumWV}'/share/*; do
ln -s -t "$out/share/" "$f"
done
'';