2008-02-02 21:41:06 +01:00
|
|
|
args: with args;
|
2007-06-05 17:57:26 +02:00
|
|
|
|
2009-04-28 16:08:18 +02:00
|
|
|
assert stdenv ? glibc;
|
|
|
|
|
2009-04-28 01:01:20 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2009-08-11 23:03:53 +02:00
|
|
|
name = "hal-0.5.13";
|
2009-09-26 01:05:53 +02:00
|
|
|
|
2007-06-05 17:57:26 +02:00
|
|
|
src = fetchurl {
|
2009-04-28 01:01:20 +02:00
|
|
|
url = "http://hal.freedesktop.org/releases/${name}.tar.gz";
|
2009-08-11 23:03:53 +02:00
|
|
|
sha256 = "1by8z7vy1c1m3iyh57rlqx6rah5gj6kx3ba30s9305bnffij5kzb";
|
2007-06-05 17:57:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
2008-02-02 21:41:06 +01:00
|
|
|
pkgconfig python pciutils expat libusb dbus.libs dbus_glib glib
|
2009-08-11 23:03:53 +02:00
|
|
|
libuuid perl perlXMLParser gettext zlib gperf
|
2009-09-26 01:05:53 +02:00
|
|
|
consolekit policykit
|
2009-04-28 01:01:20 +02:00
|
|
|
# !!! libsmbios is broken; it doesn't install headers.
|
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.
|
2009-04-28 01:01:20 +02:00
|
|
|
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
|
|
|
--localstatedir=/var
|
2007-06-08 00:02:12 +02:00
|
|
|
--with-eject=${eject}/bin/eject
|
2009-08-11 23:03:53 +02:00
|
|
|
--with-linux-input-header=${stdenv.glibc}/include/linux/input.h
|
2009-09-26 20:56:53 +02:00
|
|
|
--enable-umount-helper
|
2009-04-28 01:01:20 +02:00
|
|
|
'';
|
2007-06-05 17:57:26 +02:00
|
|
|
|
2009-08-11 23:03:53 +02:00
|
|
|
propagatedBuildInputs = [libusb libsmbios];
|
2008-03-06 14:06:32 +01:00
|
|
|
|
2009-04-28 01:01:20 +02:00
|
|
|
preConfigure = ''
|
2009-08-11 23:03:53 +02:00
|
|
|
for i in hald/linux/probing/probe-smbios.c hald/linux/osspec.c \
|
2009-08-17 04:04:26 +02:00
|
|
|
hald/linux/coldplug.c hald/linux/blockdev.c \
|
|
|
|
tools/hal-storage-mount.c ./tools/hal-storage-shared.c
|
2009-08-11 23:03:53 +02:00
|
|
|
do
|
|
|
|
substituteInPlace $i \
|
|
|
|
--replace /usr/sbin/dmidecode ${dmidecode}/sbin/dmidecode \
|
2009-08-17 04:04:26 +02:00
|
|
|
--replace /sbin/udevadm ${udev}/sbin/udevadm \
|
|
|
|
--replace /bin/mount ${utillinuxng}/bin/mount \
|
|
|
|
--replace /bin/umount ${utillinuxng}/bin/umount
|
2009-08-11 23:03:53 +02:00
|
|
|
done
|
2009-04-28 01:01:20 +02:00
|
|
|
'';
|
2009-09-26 20:56:53 +02:00
|
|
|
|
|
|
|
installFlags = "slashsbindir=$(out)/sbin";
|
2007-06-05 17:57:26 +02:00
|
|
|
}
|