04c7506f0f
- The split was only done where it seemed that some parts aren't really needed, which were mainly headers and gtk-doc. - Update style to be closer with what's common in nixpkgs. - Change explicit removal of icon theme cache into including the hicolor theme.
30 lines
903 B
Nix
30 lines
903 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, gtk, dbus_glib, upower, xfconf
|
|
, libxfce4ui, libxfce4util, libnotify, xfce4panel, hicolor_icon_theme }:
|
|
let
|
|
p_name = "xfce4-power-manager";
|
|
ver_maj = "1.4";
|
|
ver_min = "4";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "${p_name}-${ver_maj}.${ver_min}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2";
|
|
sha256 = "01rvqy1cif4s8lkidb7hhmsz7d9f2fwcwvc51xycaj3qgsmch3n5";
|
|
};
|
|
|
|
buildInputs =
|
|
[ pkgconfig intltool gtk dbus_glib upower xfconf libxfce4ui libxfce4util
|
|
libnotify xfce4panel hicolor_icon_theme
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://goodies.xfce.org/projects/applications/xfce4-power-manager;
|
|
description = "A power manager for the Xfce Desktop Environment";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.eelco ];
|
|
};
|
|
}
|
|
|