2010-07-21 14:02:12 +02:00
|
|
|
{ stdenv, fetchurl, gperf, pkgconfig, glib, acl
|
|
|
|
, libusb, usbutils, pciutils }:
|
2008-07-31 16:46:11 +02:00
|
|
|
|
2009-08-12 15:36:36 +02:00
|
|
|
assert stdenv ? glibc;
|
|
|
|
|
2009-08-11 23:00:42 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2011-02-11 14:30:39 +01:00
|
|
|
name = "udev-166";
|
2008-02-04 14:04:16 +01:00
|
|
|
|
2008-07-06 22:56:58 +02:00
|
|
|
src = fetchurl {
|
2009-08-11 23:00:42 +02:00
|
|
|
url = "mirror://kernel/linux/utils/kernel/hotplug/${name}.tar.bz2";
|
2011-02-11 14:30:39 +01:00
|
|
|
sha256 = "1msl8cwf47shmz5lr2w9w3nzzxqnf5dc0bs7dvbnxmbal60p7lpm";
|
2005-08-19 16:11:05 +02:00
|
|
|
};
|
2008-07-06 22:56:58 +02:00
|
|
|
|
2010-07-21 14:02:12 +02:00
|
|
|
buildInputs = [ gperf pkgconfig glib acl libusb usbutils ];
|
2009-08-11 23:00:42 +02:00
|
|
|
|
2010-07-21 14:02:12 +02:00
|
|
|
configureFlags =
|
|
|
|
''
|
|
|
|
--with-pci-ids-path=${pciutils}/share/pci.ids
|
|
|
|
--disable-introspection
|
|
|
|
--with-firmware-path=/root/test-firmware:/var/run/current-system/firmware
|
|
|
|
'';
|
2009-08-11 23:00:42 +02:00
|
|
|
|
|
|
|
postInstall =
|
2008-08-08 21:54:48 +02:00
|
|
|
''
|
2009-08-11 23:00:42 +02:00
|
|
|
# The path to rule_generator.functions in write_cd_rules and
|
|
|
|
# write_net_rules is broken. Also, don't store the mutable
|
|
|
|
# persistant rules in /etc/udev/rules.d but in
|
|
|
|
# /var/lib/udev/rules.d.
|
|
|
|
for i in $out/libexec/write_cd_rules $out/libexec/write_net_rules; do
|
|
|
|
substituteInPlace $i \
|
|
|
|
--replace /lib/udev $out/libexec \
|
|
|
|
--replace /etc/udev/rules.d /var/lib/udev/rules.d
|
|
|
|
done
|
2008-02-04 14:04:16 +01:00
|
|
|
|
2009-08-11 23:00:42 +02:00
|
|
|
# Don't set PATH to /bin:/sbin; won't work in NixOS.
|
2010-05-15 11:54:35 +02:00
|
|
|
sed -e '/PATH=/d' -i $out/libexec/rule_generator.functions
|
2009-08-17 02:35:18 +02:00
|
|
|
|
|
|
|
ln -s $out/lib/ConsoleKit $out/etc/ConsoleKit
|
2011-02-11 14:30:39 +01:00
|
|
|
|
|
|
|
rm -rf $out/share/gtk-doc
|
2009-08-11 23:00:42 +02:00
|
|
|
'';
|
|
|
|
|
2008-02-04 14:04:16 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html;
|
|
|
|
description = "Udev manages the /dev filesystem";
|
|
|
|
};
|
2005-08-19 16:11:05 +02:00
|
|
|
}
|