2007-06-05 17:57:26 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, python, pciutils, usbutils, expat
|
|
|
|
, libusb, dbus, dbus_glib, glib, libvolume_id, perl, perlXMLParser
|
2007-06-08 00:02:12 +02:00
|
|
|
, gettext, zlib /* required by pciutils */, eject, libsmbios
|
2007-06-09 21:47:20 +02:00
|
|
|
, udev
|
2007-06-05 17:57:26 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "hal-0.5.9";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://people.freedesktop.org/~david/dist/hal-0.5.9.tar.gz;
|
|
|
|
sha256 = "178cm30kshwvs0kf5d3l9cn4hyhfv5h6c6q0qnl0jxhynvpgin35";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
pkgconfig python pciutils expat libusb dbus dbus_glib glib
|
2007-06-08 00:02:12 +02:00
|
|
|
libvolume_id perl perlXMLParser gettext zlib libsmbios
|
2007-06-05 17:57:26 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
# !!! Hm, maybe the pci/usb.ids location should be in /etc, so that
|
|
|
|
# we don't have to rebuild HAL when we update the PCI/USB IDs.
|
|
|
|
configureFlags = "
|
2007-06-09 21:47:20 +02:00
|
|
|
--with-pci-ids=${pciutils}/share
|
|
|
|
--with-usb-ids=${usbutils}/share
|
2007-06-05 17:57:26 +02:00
|
|
|
--disable-docbook-docs
|
|
|
|
--disable-gtk-doc
|
|
|
|
--localstatedir=/var
|
2007-06-08 00:02:12 +02:00
|
|
|
--with-eject=${eject}/bin/eject
|
2007-06-05 17:57:26 +02:00
|
|
|
";
|
|
|
|
|
2007-06-09 21:47:20 +02:00
|
|
|
preBuild = "
|
|
|
|
substituteInPlace hald/linux/coldplug.c --replace /usr/bin/udevinfo ${udev}/bin/udevinfo
|
2007-06-05 17:57:26 +02:00
|
|
|
";
|
|
|
|
}
|