* Added the Xfce power manager.
svn path=/nixpkgs/trunk/; revision=23078
This commit is contained in:
parent
456d3f41ae
commit
01cf8db4da
24
pkgs/desktops/xfce-4/applications/xfce4-power-manager.nix
Normal file
24
pkgs/desktops/xfce-4/applications/xfce4-power-manager.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, intltool, gtk, dbus_glib, xfconf
|
||||||
|
, libxfcegui4, libxfce4util, libnotify, xfce4panel }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "xfce4-power-manager-0.8.5";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://www.xfce.org/archive/src/apps/xfce4-power-manager/0.8/${name}.tar.bz2";
|
||||||
|
sha1 = "b1ce0f120733ec1a6267d50ba5c2990bbbbccfd4";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs =
|
||||||
|
[ pkgconfig intltool gtk dbus_glib xfconf libxfcegui4 libxfce4util
|
||||||
|
libnotify xfce4panel
|
||||||
|
];
|
||||||
|
|
||||||
|
NIX_CFLAGS_COMPILE = "-I${libxfcegui4}/include/xfce4";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://goodies.xfce.org/projects/applications/xfce4-power-manager;
|
||||||
|
description = "A power manager for the Xfce Desktop Environment";
|
||||||
|
license = "GPLv2+";
|
||||||
|
};
|
||||||
|
}
|
@ -55,6 +55,8 @@ rec {
|
|||||||
|
|
||||||
ristretto = callPackage ./applications/ristretto.nix { };
|
ristretto = callPackage ./applications/ristretto.nix { };
|
||||||
|
|
||||||
|
xfce4_power_manager = callPackage ./applications/xfce4-power-manager.nix { };
|
||||||
|
|
||||||
#### ART
|
#### ART
|
||||||
|
|
||||||
xfce4icontheme = callPackage ./art/xfce4-icon-theme.nix { };
|
xfce4icontheme = callPackage ./art/xfce4-icon-theme.nix { };
|
||||||
|
Loading…
Reference in New Issue
Block a user