1 { lib, stdenv, fetchFromGitHub, automake, autoconf, libtool, pkg-config, gnutls
2 , libgcrypt, libtasn1, glib, libplist, libusbmuxd }:
4 stdenv.mkDerivation rec {
5 pname = "libimobiledevice";
8 src = fetchFromGitHub {
12 sha256 = "1jkq3hpg4n5a6s1k618ib0s80pwf00nlfcby7xckysq8mnd2pp39";
15 outputs = [ "out" "dev" ];
23 propagatedBuildInputs = [
32 preConfigure = "NOCONFIGURE=1 ./autogen.sh";
40 homepage = "https://github.com/libimobiledevice/libimobiledevice";
41 description = "A software library that talks the protocols to support iPhone®, iPod Touch® and iPad® devices on Linux";
43 libimobiledevice is a software library that talks the protocols to support
44 iPhone®, iPod Touch® and iPad® devices on Linux. Unlike other projects, it
45 does not depend on using any existing proprietary libraries and does not
46 require jailbreaking. It allows other software to easily access the
47 device's filesystem, retrieve information about the device and it's
48 internals, backup/restore the device, manage SpringBoard® icons, manage
49 installed applications, retrieve addressbook/calendars/notes and bookmarks
50 and synchronize music and video to the device. The library is in
51 development since August 2007 with the goal to bring support for these
52 devices to the Linux Desktop.
54 license = licenses.lgpl21Plus;
55 platforms = platforms.linux ++ platforms.darwin;
56 maintainers = with maintainers; [ infinisil ];