Unverified Commit 5267a346 authored by Michael Weiss's avatar Michael Weiss
Browse files

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
parent ccfcf667
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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;