xfce.xfce4-settings: add integration with colord and fix upower
See #323010 and #323159.
This commit is contained in:
parent
3901dc7822
commit
8b864a7078
@ -9,8 +9,11 @@
|
||||
, libxfce4util
|
||||
, libxklavier
|
||||
, upower
|
||||
, withUpower ? true
|
||||
, xfconf
|
||||
, xf86inputlibinput
|
||||
, colord
|
||||
, withColord ? true
|
||||
}:
|
||||
|
||||
mkXfceDerivation {
|
||||
@ -29,15 +32,18 @@ mkXfceDerivation {
|
||||
libxfce4ui
|
||||
libxfce4util
|
||||
libxklavier
|
||||
upower
|
||||
xf86inputlibinput
|
||||
xfconf
|
||||
];
|
||||
]
|
||||
++ lib.optionals withUpower [ upower ]
|
||||
++ lib.optionals withColord [ colord ];
|
||||
|
||||
configureFlags = [
|
||||
"--enable-pluggable-dialogs"
|
||||
"--enable-sound-settings"
|
||||
];
|
||||
]
|
||||
++ lib.optionals withUpower [ "--enable-upower-glib" ]
|
||||
++ lib.optionals withColord [ "--enable-colord" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Settings manager for Xfce";
|
||||
|
Loading…
Reference in New Issue
Block a user