nixpkgs/pkgs/desktops/xfce/core/xfce4-settings/default.nix

41 lines
813 B
Nix
Raw Normal View History

2021-03-02 12:28:54 +00:00
{ mkXfceDerivation, exo, garcon, gtk3, glib
2019-08-17 22:36:42 +00:00
, libnotify, libxfce4ui, libxfce4util, libxklavier
, upower, xfconf, xf86inputlibinput }:
2017-12-17 15:02:52 +00:00
2019-08-13 21:52:01 +00:00
mkXfceDerivation {
2017-12-17 15:02:52 +00:00
category = "xfce";
pname = "xfce4-settings";
2021-04-13 21:48:51 +00:00
version = "4.16.1";
2017-12-17 15:02:52 +00:00
2021-04-13 21:48:51 +00:00
sha256 = "0mjhglfsqmiycpv98l09n2556288g2713n4pvxn0srivm017fdir";
2017-12-17 15:02:52 +00:00
postPatch = ''
2021-03-02 12:28:54 +00:00
for f in xfsettingsd/pointers.c dialogs/mouse-settings/main.c; do
2017-12-17 15:02:52 +00:00
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"
];
meta = {
description = "Settings manager for Xfce";
};
2017-12-17 15:02:52 +00:00
}