{ stdenv , fetchFromGitHub , autoreconfHook , pkgconfig , enableUdev ? stdenv.isLinux && !stdenv.hostPlatform.isMusl , udev ? null , libobjc , IOKit , withStatic ? false }: assert enableUdev -> udev != null; stdenv.mkDerivation rec { pname = "libusb"; version = "1.0.23"; src = fetchFromGitHub { owner = "libusb"; repo = "libusb"; rev = "v${version}"; sha256 = "0mxbpg01kgbk5nh6524b0m4xk7ywkyzmc3yhi5asqcsd3rbhjj98"; }; outputs = [ "out" "dev" ]; nativeBuildInputs = [ pkgconfig autoreconfHook ]; propagatedBuildInputs = stdenv.lib.optional enableUdev udev ++ stdenv.lib.optionals stdenv.isDarwin [ libobjc IOKit ]; dontDisableStatic = withStatic; configureFlags = stdenv.lib.optional (!enableUdev) "--disable-udev"; preFixup = stdenv.lib.optionalString enableUdev '' sed 's,-ludev,-L${stdenv.lib.getLib udev}/lib -ludev,' -i $out/lib/libusb-1.0.la ''; meta = with stdenv.lib; { homepage = "https://libusb.info/"; repositories.git = "https://github.com/libusb/libusb"; description = "cross-platform user-mode USB device library"; longDescription = '' libusb is a cross-platform user-mode library that provides access to USB devices. ''; platforms = platforms.all; license = licenses.lgpl21Plus; maintainers = [ ]; }; }