2011-07-25 02:29:15 +02:00
|
|
|
{ stdenv, fetchurl, xz, pkgconfig, glib, dbus, dbus_glib, polkit
|
|
|
|
, intltool, libxslt, docbook_xsl, udev, libusb1, pmutils }:
|
|
|
|
|
|
|
|
assert stdenv.isLinux;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-09-06 11:50:20 +02:00
|
|
|
name = "upower-0.9.13";
|
2011-07-25 02:29:15 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://upower.freedesktop.org/releases/${name}.tar.xz";
|
2011-09-06 11:50:20 +02:00
|
|
|
sha256 = "08jasjkp44ydvsnk020xghrshi0jspp5078id26n5nhidp1d4z9c";
|
2011-07-25 02:29:15 +02:00
|
|
|
};
|
|
|
|
|
2011-08-26 16:57:48 +02:00
|
|
|
buildInputs = [ dbus_glib polkit intltool libxslt docbook_xsl udev libusb1 ];
|
|
|
|
|
|
|
|
buildNativeInputs = [ xz pkgconfig ];
|
2011-07-25 02:29:15 +02:00
|
|
|
|
|
|
|
configureFlags = "--with-backend=linux --localstatedir=/var";
|
|
|
|
|
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
substituteInPlace src/linux/up-backend.c \
|
|
|
|
--replace /usr/bin/pm- ${pmutils}/bin/pm- \
|
|
|
|
--replace /usr/sbin/pm- ${pmutils}/sbin/pm-
|
|
|
|
'';
|
|
|
|
|
|
|
|
installFlags = "localstatedir=$(TMPDIR)/var";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://upower.freedesktop.org/;
|
|
|
|
description = "A D-Bus service for power management";
|
2011-08-04 00:36:20 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2011-07-25 02:29:15 +02:00
|
|
|
};
|
|
|
|
}
|