b44d846990
- systemd puts all into one output now (except for man), because I wasn't able to fix all systemd/udev refernces for NixOS to work well - libudev is now by default *copied* into another path, which is what most packages will use as build input :-) - pkgs.udev = [ libudev.out libudev.dev ]; because there are too many references that just put `udev` into build inputs (to rewrite them all), also this made "${udev}/foo" fail at *evaluation* time so it's easier to catch and change to something more specific
31 lines
912 B
Nix
31 lines
912 B
Nix
{ stdenv, fetchurl, pkgconfig, libudev ? null, libobjc, IOKit }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libusb-1.0.19";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libusb/${name}.tar.bz2";
|
|
sha256 = "0h38p9rxfpg9vkrbyb120i1diq57qcln82h5fr7hvy82c20jql3c";
|
|
};
|
|
|
|
outputs = [ "dev" "out" ]; # get rid of propagating systemd closure
|
|
|
|
buildInputs = [ pkgconfig ];
|
|
propagatedBuildInputs =
|
|
stdenv.lib.optional stdenv.isLinux libudev ++
|
|
stdenv.lib.optionals stdenv.isDarwin [ libobjc IOKit ];
|
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";
|
|
|
|
preFixup = stdenv.lib.optionalString stdenv.isLinux ''
|
|
sed 's,-ludev,-L${libudev.out}/lib -ludev,' -i $out/lib/libusb-1.0.la
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.libusb.info;
|
|
description = "User-space USB library";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
|
};
|
|
}
|