3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/xfce4-14/xfce4-settings/default.nix

40 lines
925 B
Nix
Raw Normal View History

{ mkXfceDerivation, automakeAddFlags, exo, garcon, gtk3
2017-12-17 15:02:52 +00:00
, libnotify ? null, libxfce4ui, libxfce4util, libxklavier ? null
, upower ? null, xfconf, xf86inputlibinput ? null }:
mkXfceDerivation rec {
category = "xfce";
pname = "xfce4-settings";
2019-07-02 16:29:15 +01:00
version = "4.14pre2";
rev = "xfce-4.14pre2";
2017-12-17 15:02:52 +00:00
2019-07-02 16:29:15 +01:00
sha256 = "0agi5flbzbc9q29yh7wbk3giif74finf4shq3q7v2h91w5kvyc9j";
2017-12-17 15:02:52 +00:00
postPatch = ''
automakeAddFlags xfce4-settings-editor/Makefile.am xfce4_settings_editor_CFLAGS DBUS_GLIB_CFLAGS
for f in $(find . -name \*.c); do
substituteInPlace $f --replace \"libinput-properties.h\" '<xorg/libinput-properties.h>'
done
'';
nativeBuildInputs = [ automakeAddFlags ];
buildInputs = [
exo
garcon
gtk3
libnotify
libxfce4ui
libxfce4util
libxklavier
upower
xfconf
xf86inputlibinput
];
configureFlags = [
"--enable-pluggable-dialogs"
"--enable-sound-settings"
];
}