python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libusb-compat / 0.1.nix
blobb9aa26c67a08852d00886a9e1a3f56715f53d67b
1 { stdenv
2 , lib
3 , fetchFromGitHub
4 , autoreconfHook
5 , pkg-config
6 , libusb1
7 }:
9 stdenv.mkDerivation rec {
10   pname = "libusb-compat";
11   version = "0.1.7";
13   outputs = [ "out" "dev" ]; # get rid of propagating systemd closure
14   outputBin = "dev";
16   src = fetchFromGitHub {
17     owner = "libusb";
18     repo = "libusb-compat-0.1";
19     rev = "v${version}";
20     sha256 = "1nybccgjs14b3phhaycq2jx1gym4nf6sghvnv9qdfmlqxacx0jz5";
21   };
23   patches = lib.optional stdenv.hostPlatform.isMusl ./fix-headers.patch;
25   nativeBuildInputs = [ autoreconfHook pkg-config ];
27   buildInputs = [ libusb1 ];
29   # without this, libusb-compat is unable to find libusb1
30   postFixup = ''
31     find $out/lib -name \*.so\* -type f -exec \
32       patchelf --set-rpath ${lib.makeLibraryPath buildInputs} {} \;
33   '';
35   meta = with lib; {
36     homepage = "https://libusb.info/";
37     description = "cross-platform user-mode USB device library";
38     longDescription = ''
39       libusb is a cross-platform user-mode library that provides access to USB devices.
40       The current API is of 1.0 version (libusb-1.0 API), this library is a wrapper exposing the legacy API.
41     '';
42     license = licenses.lgpl2Plus;
43     platforms = platforms.unix;
44   };