nixpkgs/pkgs/desktops/xfce4-14/xfce4-settings/default.nix

37 lines
735 B
Nix
Raw Normal View History

{ 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
glib
2017-12-17 15:02:52 +00:00
gtk3
libnotify
libxfce4ui
libxfce4util
libxklavier
upower
xf86inputlibinput
xfconf
2017-12-17 15:02:52 +00:00
];
configureFlags = [
"--enable-pluggable-dialogs"
"--enable-sound-settings"
];
}