chromiumBeta: Fix the configuration phase

The configuration phase was failing with "No package 'libevdev' found".
See [0] for the full output.
The build phase is still failing and we probably need to use a patch to
avoid requiring a newer, unreleased LLVM version.

[0]: https://github.com/NixOS/nixpkgs/issues/213862#issuecomment-1540854965
This commit is contained in:
Michael Weiss
2023-05-10 23:58:01 +02:00
parent ccfcf66751
commit 5267a34619
@@ -36,6 +36,7 @@
, curl
, libffi
, libepoxy
, libevdev
# postPatch:
, glibc # gconv + locale
# postFixup:
@@ -154,6 +155,8 @@ let
curl
libepoxy
libffi
] ++ lib.optionals (chromiumVersionAtLeast "114") [
libevdev
] ++ lib.optional systemdSupport systemd
++ lib.optionals cupsSupport [ libgcrypt cups ]
++ lib.optional pulseSupport libpulseaudio;