2015-09-09 10:26:03 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, dbus, dbus_glib, dbus_tools
|
2012-08-21 13:34:04 +01:00
|
|
|
, intltool, libxslt, docbook_xsl, udev, libusb1, pmutils
|
2014-01-25 23:15:05 +00:00
|
|
|
, useSystemd ? true, systemd, gobjectIntrospection
|
2012-08-21 13:34:04 +01:00
|
|
|
}:
|
2011-07-25 01:29:15 +01:00
|
|
|
|
|
|
|
assert stdenv.isLinux;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-09-09 10:26:03 +01:00
|
|
|
name = "upower-0.99.2";
|
2011-07-25 01:29:15 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://upower.freedesktop.org/releases/${name}.tar.xz";
|
2015-09-09 10:26:03 +01:00
|
|
|
sha256 = "0vwlh20jmaf01m38kfn8yx2869a3clmkzlycrj99rf4nvwx4bp79";
|
2011-07-25 01:29:15 +01:00
|
|
|
};
|
|
|
|
|
2012-08-21 13:34:04 +01:00
|
|
|
buildInputs =
|
2015-09-09 10:26:03 +01:00
|
|
|
[ dbus_glib intltool libxslt docbook_xsl udev libusb1 gobjectIntrospection ]
|
2012-08-21 13:34:04 +01:00
|
|
|
++ stdenv.lib.optional useSystemd systemd;
|
2011-08-26 15:57:48 +01:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2011-07-25 01:29:15 +01:00
|
|
|
|
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
substituteInPlace src/linux/up-backend.c \
|
|
|
|
--replace /usr/bin/pm- ${pmutils}/bin/pm- \
|
|
|
|
--replace /usr/sbin/pm- ${pmutils}/sbin/pm-
|
2012-08-21 13:34:04 +01:00
|
|
|
substituteInPlace src/notify-upower.sh \
|
|
|
|
--replace /usr/bin/dbus-send ${dbus_tools}/bin/dbus-send
|
2011-07-25 01:29:15 +01:00
|
|
|
'';
|
|
|
|
|
2013-11-12 08:59:58 +00:00
|
|
|
configureFlags =
|
|
|
|
[ "--with-backend=linux" "--localstatedir=/var"
|
|
|
|
"--enable-deprecated" # needed for Xfce (Nov 2013)
|
|
|
|
]
|
|
|
|
++ stdenv.lib.optional useSystemd
|
|
|
|
[ "--enable-systemd"
|
|
|
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
2014-12-05 11:57:00 +00:00
|
|
|
"--with-systemdutildir=$(out)/lib/systemd"
|
2013-11-12 08:59:58 +00:00
|
|
|
"--with-udevrulesdir=$(out)/lib/udev/rules.d"
|
|
|
|
];
|
|
|
|
|
2013-09-12 09:44:04 +01:00
|
|
|
NIX_CFLAGS_LINK = "-lgcc_s";
|
|
|
|
|
2011-12-20 23:10:06 +00:00
|
|
|
installFlags = "historydir=$(TMPDIR)/foo";
|
2011-07-25 01:29:15 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://upower.freedesktop.org/;
|
|
|
|
description = "A D-Bus service for power management";
|
2011-08-03 23:36:20 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2011-07-25 01:29:15 +01:00
|
|
|
};
|
|
|
|
}
|