2021-01-17 10:17:16 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, usbmuxd, fuse, libimobiledevice }:
|
2014-10-30 10:11:24 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-08-13 06:49:17 +02:00
|
|
|
pname = "ifuse";
|
2020-12-06 17:14:11 +01:00
|
|
|
version = "1.1.4";
|
2014-10-30 10:11:24 +01:00
|
|
|
|
2018-08-13 06:49:17 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libimobiledevice";
|
|
|
|
repo = pname;
|
2020-12-06 17:14:11 +01:00
|
|
|
rev = version;
|
|
|
|
sha256 = "1r12y3h1j7ikkwk874h9969kr4ksyamvrwywx19ml6rsr01arw84";
|
2014-10-30 10:11:24 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 10:17:16 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config fuse usbmuxd libimobiledevice ];
|
2018-08-13 06:49:17 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/libimobiledevice/ifuse";
|
2014-10-30 10:11:24 +01:00
|
|
|
description = "A fuse filesystem implementation to access the contents of iOS devices";
|
|
|
|
longDescription = ''
|
2018-08-13 06:49:17 +02:00
|
|
|
Mount directories of an iOS device locally using fuse. By default the media
|
|
|
|
directory is mounted, options allow to also mount the sandbox container of an
|
|
|
|
app, an app's documents folder or even the root filesystem on jailbroken
|
|
|
|
devices.
|
|
|
|
'';
|
|
|
|
license = licenses.lgpl21Plus;
|
2021-03-25 16:50:32 +01:00
|
|
|
platforms = platforms.unix;
|
2019-04-16 13:50:20 +02:00
|
|
|
maintainers = with maintainers; [ infinisil ];
|
2014-10-30 10:11:24 +01:00
|
|
|
};
|
|
|
|
}
|