1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-15 02:43:24 +03:00

Merge pull request #132 from samueldr-wip/fix/cross-regression-1581751

cross-workarounds: Disable udisks for cross-builds
This commit is contained in:
Samuel Dionne-Riel 2020-04-23 00:05:25 -04:00 committed by GitHub
commit 4c479ad63d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,4 +18,7 @@ lib.mkIf isCross
# building '/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mesa-19.3.3-aarch64-unknown-linux-gnu.drv'... # building '/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mesa-19.3.3-aarch64-unknown-linux-gnu.drv'...
# meson.build:1537:2: ERROR: Dependency "wayland-scanner" not found, tried pkgconfig # meson.build:1537:2: ERROR: Dependency "wayland-scanner" not found, tried pkgconfig
security.polkit.enable = false; security.polkit.enable = false;
# udisks fails due to gobject-introspection being not cross-compilation friendly.
services.udisks2.enable = false;
} }