29 lines
899 B
Nix
29 lines
899 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, gtk, dbus_glib, xfconf
|
|
, libxfce4ui, libxfce4util, libnotify, xfce4panel }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
p_name = "xfce4-power-manager";
|
|
ver_maj = "1.2";
|
|
ver_min = "0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2";
|
|
sha256 = "1sc4f4wci5yl3l9lk7vcsbwj6hdjshbxw9qm43s64jr882jriyyp";
|
|
};
|
|
name = "${p_name}-${ver_maj}.${ver_min}";
|
|
|
|
buildInputs =
|
|
[ pkgconfig intltool gtk dbus_glib xfconf libxfce4ui libxfce4util
|
|
libnotify xfce4panel
|
|
];
|
|
preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
|
|
|
|
meta = {
|
|
homepage = http://goodies.xfce.org/projects/applications/xfce4-power-manager;
|
|
description = "A power manager for the Xfce Desktop Environment";
|
|
license = "GPLv2+";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
};
|
|
}
|