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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
900 B
Nix
Raw Normal View History

2022-12-25 12:57:22 +01:00
{ lib
, mkXfceDerivation
, exo
, garcon
, gtk3
, glib
, libnotify
, libxfce4ui
, libxfce4util
, libxklavier
, upower
, xfconf
, xf86inputlibinput
}:
2017-12-17 16:02:52 +01:00
2019-08-13 23:52:01 +02:00
mkXfceDerivation {
2017-12-17 16:02:52 +01:00
category = "xfce";
pname = "xfce4-settings";
2022-12-25 12:57:22 +01:00
version = "4.18.1";
2017-12-17 16:02:52 +01:00
2022-12-25 12:57:22 +01:00
sha256 = "sha256-Uy5dObnMV+fpt8RdyFOsYVPN8Dyx1zzOu0pDak01ipQ=";
2017-12-17 16:02:52 +01:00
postPatch = ''
2021-03-02 13:28:54 +01:00
for f in xfsettingsd/pointers.c dialogs/mouse-settings/main.c; do
2017-12-17 16:02:52 +01:00
substituteInPlace $f --replace \"libinput-properties.h\" '<xorg/libinput-properties.h>'
done
'';
buildInputs = [
exo
garcon
glib
2017-12-17 16:02:52 +01:00
gtk3
libnotify
libxfce4ui
libxfce4util
libxklavier
upower
xf86inputlibinput
xfconf
2017-12-17 16:02:52 +01:00
];
configureFlags = [
"--enable-pluggable-dialogs"
"--enable-sound-settings"
];
2021-11-28 19:51:44 +01:00
meta = with lib; {
description = "Settings manager for Xfce";
2021-11-28 19:51:44 +01:00
maintainers = with maintainers; [ ] ++ teams.xfce.members;
};
2017-12-17 16:02:52 +01:00
}