2012-01-18 12:53:01 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, dbus, dbus_glib, polkit
|
2011-07-24 17:29:15 -07:00
|
|
|
, intltool, libxslt, docbook_xsl, udev, libusb1, pmutils }:
|
|
|
|
|
|
|
|
assert stdenv.isLinux;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-07-24 19:45:26 -07:00
|
|
|
name = "upower-0.9.17";
|
2011-07-24 17:29:15 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://upower.freedesktop.org/releases/${name}.tar.xz";
|
2012-07-24 19:45:26 -07:00
|
|
|
sha256 = "0a1j2pg44r6ljj9jgzlw8i5fzabpm2b2jk058kxsr77ciz96i7yg";
|
2011-07-24 17:29:15 -07:00
|
|
|
};
|
|
|
|
|
2011-08-26 07:57:48 -07:00
|
|
|
buildInputs = [ dbus_glib polkit intltool libxslt docbook_xsl udev libusb1 ];
|
|
|
|
|
2012-01-18 12:53:01 -08:00
|
|
|
buildNativeInputs = [ pkgconfig ];
|
2011-07-24 17:29:15 -07: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-
|
|
|
|
'';
|
|
|
|
|
2011-12-20 15:10:06 -08:00
|
|
|
installFlags = "historydir=$(TMPDIR)/foo";
|
2011-07-24 17:29:15 -07:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://upower.freedesktop.org/;
|
|
|
|
description = "A D-Bus service for power management";
|
2011-08-03 15:36:20 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2011-07-24 17:29:15 -07:00
|
|
|
};
|
|
|
|
}
|