about summary refs log tree commit diff
path: root/pkgs/tools/misc/usbmuxd/default.nix
blob: 1b7c78369213a51e1116b88ae6cbfa24e602b66f (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
{ stdenv, fetchurl, cmake, libplist, libusb1, pkgconfig }:

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

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

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

  patchPhase = "sed -e 's,/lib/udev,lib/udev,' -i udev/CMakeLists.txt";

  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.'';
    inherit (libusb1.meta) platforms;
    maintainers = [ stdenv.lib.maintainers.urkud ];
  };
}