summary refs log blame commit diff
path: root/pkgs/os-specific/linux/udev/182.nix
blob: fcf06e3e8990db76e228e3d14c4b718a7b866243 (plain) (tree)

































                                                                              
{ stdenv, fetchurl, pkgconfig
, pciutils, utillinux, kmod, usbutils, gperf
}:

assert stdenv ? glibc;

stdenv.mkDerivation rec {
  name = "udev-182";

  src = fetchurl {
    url = "mirror://kernel/linux/utils/kernel/hotplug/${name}.tar.bz2";
    sha256 = "143qvm0kij26j2l5icnch4x38fajys6li7j0c5mpwi6kqmc8hqx0";
  };

  nativeBuildInputs = [ pkgconfig ];

  buildInputs = [ utillinux kmod usbutils #glib gobjectIntrospection
                  gperf
                ];

  configureFlags = [ "--with-pci-ids-path=${pciutils}/share/pci.ids"
                     "--disable-gudev"
                     "--disable-introspection"
                   ];

  NIX_LDFLAGS = [ "-lrt" ];

  meta = with stdenv.lib; {
    homepage = http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html;
    description = "Udev manages the /dev filesystem";
    platforms = platforms.linux;
    license = licenses.gpl2;
  };
}