fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, python, pkgconfig, usbmuxd, glib, libgcrypt,
2 libtasn1, libplist, readline, libusbmuxd, openssl }:
3
4stdenv.mkDerivation rec {
5 name = "libimobiledevice-1.2.0";
6
7 nativeBuildInputs = [ python libplist.swig pkgconfig ];
8 buildInputs = [ readline ];
9 propagatedBuildInputs = [ libusbmuxd glib libgcrypt libtasn1 libplist openssl ];
10
11 patchPhase = ''sed -e 's@1\.3\.21@@' -i configure'';
12 passthru.swig = libplist.swig;
13
14 src = fetchurl {
15 url = "${meta.homepage}/downloads/${name}.tar.bz2";
16 sha256 = "0dqhy4qwj30mw8pwckvjmgnj1qqrh6p8c6jknmhvylshhzh0ssvq";
17 };
18
19 meta = {
20 homepage = http://www.libimobiledevice.org;
21 description = "A software library that talks the protocols to support iPhone®, iPod Touch® and iPad® devices on Linux";
22 longDescription = ''
23 libimobiledevice is a software library that talks the protocols to support
24 iPhone®, iPod Touch® and iPad® devices on Linux. Unlike other projects, it
25 does not depend on using any existing proprietary libraries and does not
26 require jailbreaking. It allows other software to easily access the
27 device's filesystem, retrieve information about the device and it's
28 internals, backup/restore the device, manage SpringBoard® icons, manage
29 installed applications, retrieve addressbook/calendars/notes and bookmarks
30 and synchronize music and video to the device. The library is in
31 development since August 2007 with the goal to bring support for these
32 devices to the Linux Desktop.'';
33 inherit (usbmuxd.meta) platforms maintainers;
34 };
35}