ac70cd728c
All code that was at xfce4-14 has been moved to xfce/*. Old expressions that aren't rewritten might be abandoned or broken. Additonally I've ported the xfce4-14 thunar expression to support thunarPlugins. We can now support this interface in the Xfce module again, although I'm not sure if we have any plugins packaged that support latest thunar.
23 lines
737 B
Nix
23 lines
737 B
Nix
{ mkXfceDerivation, automakeAddFlags, exo, gtk3, libnotify
|
|
, libxfce4ui, libxfce4util, upower, xfconf }:
|
|
|
|
mkXfceDerivation {
|
|
category = "xfce";
|
|
pname = "xfce4-power-manager";
|
|
version = "1.6.5";
|
|
|
|
sha256 = "0zazm2cgkz5xj7rvy9gbh4kaay2anfcmawg4gj38pnq3a8zcwwd5";
|
|
|
|
nativeBuildInputs = [ automakeAddFlags exo ];
|
|
buildInputs = [ gtk3 libnotify libxfce4ui libxfce4util upower xfconf ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace configure.ac.in --replace gio-2.0 gio-unix-2.0
|
|
automakeAddFlags src/Makefile.am xfce4_power_manager_CFLAGS GIO_CFLAGS
|
|
automakeAddFlags settings/Makefile.am xfce4_power_manager_settings_CFLAGS GIO_CFLAGS
|
|
'';
|
|
|
|
meta = {
|
|
description = "A power manager for the Xfce Desktop Environment";
|
|
};
|
|
}
|