2019-08-17 04:51:49 +01:00
|
|
|
{ mkXfceDerivation, automakeAddFlags, exo, garcon, gtk3, glib
|
2019-08-17 23:36:42 +01:00
|
|
|
, libnotify, libxfce4ui, libxfce4util, libxklavier
|
|
|
|
, upower, xfconf, xf86inputlibinput }:
|
2017-12-17 15:02:52 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
mkXfceDerivation {
|
2017-12-17 15:02:52 +00:00
|
|
|
category = "xfce";
|
|
|
|
pname = "xfce4-settings";
|
2019-08-12 11:38:41 +01:00
|
|
|
version = "4.14.0";
|
2017-12-17 15:02:52 +00:00
|
|
|
|
2019-08-12 11:38:41 +01:00
|
|
|
sha256 = "13gmxd4sfgd6wky7s03bar58w9vl4i6jv2wncd6iajww791y5akn";
|
2017-12-17 15:02:52 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
for f in $(find . -name \*.c); do
|
|
|
|
substituteInPlace $f --replace \"libinput-properties.h\" '<xorg/libinput-properties.h>'
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
exo
|
|
|
|
garcon
|
2019-08-17 04:51:49 +01:00
|
|
|
glib
|
2017-12-17 15:02:52 +00:00
|
|
|
gtk3
|
|
|
|
libnotify
|
|
|
|
libxfce4ui
|
|
|
|
libxfce4util
|
|
|
|
libxklavier
|
|
|
|
upower
|
|
|
|
xf86inputlibinput
|
2019-08-17 04:51:49 +01:00
|
|
|
xfconf
|
2017-12-17 15:02:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-pluggable-dialogs"
|
|
|
|
"--enable-sound-settings"
|
|
|
|
];
|
|
|
|
}
|