3c74283d03
* added briss: a pdf cropper * added compton, an improved fork of xcompmgr * added myself to the maintainers list * minor version bumps: xcompmgr, upower svn path=/nixpkgs/trunk/; revision=34380
35 lines
955 B
Nix
35 lines
955 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.16";
|
|
|
|
src = fetchurl {
|
|
url = "http://upower.freedesktop.org/releases/${name}.tar.xz";
|
|
sha256 = "eb9a3d39a8cb62970fd612e333bc7a43437ab0e7890303578b0a7e3c67c8c212";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|