about summary refs log tree commit diff
path: root/pkgs/tools/misc/usbmuxd/default.nix
blob: c4b4124935586738f324760ee3053cfc9a8e2f26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchurl, cmake, libplist, libusb1, pkgconfig }:

stdenv.mkDerivation rec {
  name = "usbmuxd-1.0.7";

  src = fetchurl {
    url = "http://marcansoft.com/uploads/usbmuxd/${name}.tar.bz2";
    sha256 = "09swwr6x46qxmwylrylnyqh4pznr0swla9gijggwxxw8dw82r840";
  };

  buildNativeInputs = [ cmake pkgconfig ];
  propagatedBuildInputs = [ libusb1 libplist ];

  patchPhase =
    ''
    sed -e 's,/lib/udev,lib/udev,' -i udev/CMakeLists.txt
    sed -e 's,/bin/echo,echo,g' -i Modules/describe.sh
    '';


  cmakeFlags = ''-DLIB_SUFFIX='';
  meta = {
    homepage = http://marcansoft.com/blog/iphonelinux/usbmuxd/;
    description = "USB Multiplex Daemon (for talking to iPhone or iPod)";
    longDescription = ''
      usbmuxd: USB Multiplex Daemon. This bit of software is in charge of
      talking to your iPhone or iPod Touch over USB and coordinating access to
      its services by other applications.'';
    platforms = stdenv.lib.platforms.linux;
    maintainers = [ stdenv.lib.maintainers.urkud ];
  };
}