11 stdenv.mkDerivation rec {
13 version = "1.1.1+date=2023-05-05";
15 src = fetchFromGitHub {
16 owner = "libimobiledevice";
18 rev = "01c94c77f59404924f1c46d99c4e5e0c7817281b";
19 hash = "sha256-WqbobkzlJ9g5fb9S2QPi3qdpCLx3pxtNlT7qDI63Zp4=";
27 propagatedBuildInputs = [
33 export RELEASE_VERSION=${version}
37 "--with-udevrulesdir=${placeholder "out"}/lib/udev/rules.d"
38 "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
42 homepage = "https://github.com/libimobiledevice/usbmuxd";
43 description = "Socket daemon to multiplex connections from and to iOS devices";
45 usbmuxd stands for "USB multiplexing daemon". This daemon is in charge of
46 multiplexing connections over USB to an iOS device. To users, it means
47 you can sync your music, contacts, photos, etc. over USB. To developers, it
48 means you can connect to any listening localhost socket on the device. usbmuxd
49 is not used for tethering data transfer which uses a dedicated USB interface as
50 a virtual network device. Multiple connections to different TCP ports can happen
51 in parallel. The higher-level layers are handled by libimobiledevice.
53 license = licenses.gpl2Plus;
54 platforms = platforms.unix;
56 mainProgram = "usbmuxd";