10 stdenv.mkDerivation rec {
12 version = "1.1.1+date=2022-04-04";
14 src = fetchFromGitHub {
15 owner = "libimobiledevice";
17 rev = "2839789bdb581ede7c331b9b4e07e0d5a89d7d18";
18 hash = "sha256-wYW6hI0Ti9gKtk/wxIbdY5KaPMs/p+Ve9ceeRqXihQI=";
26 propagatedBuildInputs = [
32 "--with-udevrulesdir=${placeholder "out"}/lib/udev/rules.d"
33 "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
37 homepage = "https://github.com/libimobiledevice/usbmuxd";
38 description = "A socket daemon to multiplex connections from and to iOS devices";
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.
48 license = licenses.gpl2Plus;
49 platforms = platforms.unix;
50 maintainers = with maintainers; [ infinisil ];