python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / usbmuxd / default.nix
blob624c818c1f7250ec8576cf0462fa3f8c7617e40e
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , autoreconfHook
5 , pkg-config
6 , libimobiledevice
7 , libusb1
8 }:
10 stdenv.mkDerivation rec {
11   pname = "usbmuxd";
12   version = "1.1.1+date=2022-04-04";
14   src = fetchFromGitHub {
15     owner = "libimobiledevice";
16     repo = pname;
17     rev = "2839789bdb581ede7c331b9b4e07e0d5a89d7d18";
18     hash = "sha256-wYW6hI0Ti9gKtk/wxIbdY5KaPMs/p+Ve9ceeRqXihQI=";
19   };
21   nativeBuildInputs = [
22     autoreconfHook
23     pkg-config
24   ];
26   propagatedBuildInputs = [
27     libimobiledevice
28     libusb1
29   ];
31   configureFlags = [
32     "--with-udevrulesdir=${placeholder "out"}/lib/udev/rules.d"
33     "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
34   ];
36   meta = with lib; {
37     homepage = "https://github.com/libimobiledevice/usbmuxd";
38     description = "A socket daemon to multiplex connections from and to iOS devices";
39     longDescription = ''
40       usbmuxd stands for "USB multiplexing daemon". This daemon is in charge of
41       multiplexing connections over USB to an iOS device. To users, it means
42       you can sync your music, contacts, photos, etc. over USB. To developers, it
43       means you can connect to any listening localhost socket on the device. usbmuxd
44       is not used for tethering data transfer which uses a dedicated USB interface as
45       a virtual network device. Multiple connections to different TCP ports can happen
46       in parallel. The higher-level layers are handled by libimobiledevice.
47     '';
48     license = licenses.gpl2Plus;
49     platforms = platforms.unix;
50     maintainers = with maintainers; [ infinisil ];
51   };