mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-16 15:08:18 +00:00
waybar: support cross compilation
This commit is contained in:
parent
bbe8bb1c28
commit
9ff6c735f5
@ -40,10 +40,12 @@
|
||||
, udev
|
||||
, upower
|
||||
, wayland
|
||||
, wayland-scanner
|
||||
, wireplumber
|
||||
, wrapGAppsHook
|
||||
|
||||
, cavaSupport ? true
|
||||
, enableManpages ? stdenv.buildPlatform.canExecute stdenv.hostPlatform
|
||||
, evdevSupport ? true
|
||||
, experimentalPatches ? true
|
||||
, hyprlandSupport ? true
|
||||
@ -55,7 +57,7 @@
|
||||
, pipewireSupport ? true
|
||||
, pulseSupport ? true
|
||||
, rfkillSupport ? true
|
||||
, runTests ? true
|
||||
, runTests ? stdenv.buildPlatform.canExecute stdenv.hostPlatform
|
||||
, sndioSupport ? true
|
||||
, swaySupport ? true
|
||||
, traySupport ? true
|
||||
@ -97,9 +99,10 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
scdoc
|
||||
wayland-scanner
|
||||
wrapGAppsHook
|
||||
] ++ lib.optional withMediaPlayer gobject-introspection;
|
||||
] ++ lib.optional withMediaPlayer gobject-introspection
|
||||
++ lib.optional enableManpages scdoc;
|
||||
|
||||
propagatedBuildInputs = lib.optionals withMediaPlayer [
|
||||
glib
|
||||
@ -107,8 +110,6 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
python3.pkgs.pygobject3
|
||||
];
|
||||
|
||||
strictDeps = false;
|
||||
|
||||
buildInputs = [
|
||||
gtk-layer-shell
|
||||
gtkmm3
|
||||
@ -154,7 +155,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
"libinput" = inputSupport;
|
||||
"libnl" = nlSupport;
|
||||
"libudev" = udevSupport;
|
||||
"man-pages" = true;
|
||||
"man-pages" = enableManpages;
|
||||
"mpd" = mpdSupport;
|
||||
"mpris" = mprisSupport;
|
||||
"pipewire" = pipewireSupport;
|
||||
|
Loading…
Reference in New Issue
Block a user