2021-01-17 01:17:16 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, usbmuxd, fuse, libimobiledevice }:
|
2014-10-30 02:11:24 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-08-12 21:49:17 -07:00
|
|
|
pname = "ifuse";
|
2020-12-06 08:14:11 -08:00
|
|
|
version = "1.1.4";
|
2014-10-30 02:11:24 -07:00
|
|
|
|
2018-08-12 21:49:17 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libimobiledevice";
|
|
|
|
repo = pname;
|
2020-12-06 08:14:11 -08:00
|
|
|
rev = version;
|
|
|
|
sha256 = "1r12y3h1j7ikkwk874h9969kr4ksyamvrwywx19ml6rsr01arw84";
|
2014-10-30 02:11:24 -07:00
|
|
|
};
|
|
|
|
|
2021-01-17 01:17:16 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config fuse usbmuxd libimobiledevice ];
|
2018-08-12 21:49:17 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/libimobiledevice/ifuse";
|
2014-10-30 02:11:24 -07:00
|
|
|
description = "A fuse filesystem implementation to access the contents of iOS devices";
|
|
|
|
longDescription = ''
|
2018-08-12 21:49:17 -07: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 08:50:32 -07:00
|
|
|
platforms = platforms.unix;
|
2019-04-16 04:50:20 -07:00
|
|
|
maintainers = with maintainers; [ infinisil ];
|
2014-10-30 02:11:24 -07:00
|
|
|
};
|
|
|
|
}
|