summary refs log tree commit diff
path: root/pkgs/os-specific/linux/hal/default.nix
blob: 8bc74148037775171179aa69090d1fb40500c873 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ stdenv, fetchurl, pkgconfig, python, pciutils, usbutils, expat
, libusb, dbus, dbus_glib, glib, libvolume_id, perl, perlXMLParser
, gettext
}:

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
    libvolume_id perl perlXMLParser gettext
  ];

  # !!! 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 = "
    --with-pci-ids=${pciutils}/share/pci.ids
    --with-usb-ids=${usbutils}/share/usb.ids
    --disable-docbook-docs
    --disable-gtk-doc
    --localstatedir=/var
  ";

  /*
  preInstall = "
    installFlagsArray=(DESTDIR=$out/destdir)
  ";
  
  postInstall = "
    mv $out/destdir/$out/* $out
    rm -rf $out/destdir
  ";
  */
}