41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ stdenv, fetchurl, pkgconfig, glib, dbus_glib
|
|
, intltool, libxslt, docbook_xsl, udev, libgudev, libusb1
|
|
, useSystemd ? true, systemd, gobjectIntrospection
|
|
}:
|
|
|
|
assert stdenv.isLinux;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "upower-0.99.7";
|
|
|
|
src = fetchurl {
|
|
url = "https://upower.freedesktop.org/releases/${name}.tar.xz";
|
|
sha256 = "00d4830yvg84brdhz4kn60lr3r8rn2y8gdbhmhxm78i5mgvc5g14";
|
|
};
|
|
|
|
buildInputs =
|
|
[ dbus_glib intltool libxslt docbook_xsl udev libgudev libusb1 gobjectIntrospection ]
|
|
++ stdenv.lib.optional useSystemd systemd;
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
configureFlags =
|
|
[ "--with-backend=linux" "--localstatedir=/var"
|
|
]
|
|
++ stdenv.lib.optional useSystemd
|
|
[ "--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
|
"--with-systemdutildir=$(out)/lib/systemd"
|
|
"--with-udevrulesdir=$(out)/lib/udev/rules.d"
|
|
];
|
|
|
|
NIX_CFLAGS_LINK = "-lgcc_s";
|
|
|
|
installFlags = "historydir=$(TMPDIR)/foo";
|
|
|
|
meta = {
|
|
homepage = https://upower.freedesktop.org/;
|
|
description = "A D-Bus service for power management";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|