d4d7931a62
svn path=/nixpkgs/branches/stdenv-updates/; revision=31678
35 lines
943 B
Nix
35 lines
943 B
Nix
{ stdenv, fetchurl, pkgconfig, glib, dbus, dbus_glib, polkit
|
|
, intltool, libxslt, docbook_xsl, udev, libusb1, pmutils }:
|
|
|
|
assert stdenv.isLinux;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "upower-0.9.15";
|
|
|
|
src = fetchurl {
|
|
url = "http://upower.freedesktop.org/releases/${name}.tar.xz";
|
|
sha256 = "1313lr404hb29fzkf9frn1z0xxvibi451xmk05sf9kidyf01956m";
|
|
};
|
|
|
|
buildInputs = [ dbus_glib polkit intltool libxslt docbook_xsl udev libusb1 ];
|
|
|
|
buildNativeInputs = [ pkgconfig ];
|
|
|
|
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 = "historydir=$(TMPDIR)/foo";
|
|
|
|
meta = {
|
|
homepage = http://upower.freedesktop.org/;
|
|
description = "A D-Bus service for power management";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|