2022-05-23 01:19:01 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, autoreconfHook
|
|
|
|
, pkg-config
|
|
|
|
, fuse
|
|
|
|
, usbmuxd
|
|
|
|
, libimobiledevice
|
|
|
|
}:
|
2014-10-30 09:11:24 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-08-13 04:49:17 +00:00
|
|
|
pname = "ifuse";
|
2022-05-23 01:19:01 +00:00
|
|
|
version = "1.1.4+date=2022-04-04";
|
2014-10-30 09:11:24 +00:00
|
|
|
|
2018-08-13 04:49:17 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libimobiledevice";
|
|
|
|
repo = pname;
|
2022-05-23 01:19:01 +00:00
|
|
|
rev = "6f5b8e410f9615b3369ca5eb5367745e13d83b92";
|
|
|
|
hash = "sha256-KbuJLS2BWua9DnhLv2KtsQObin0PQwXQwEdgi3lSAPk=";
|
2014-10-30 09:11:24 +00:00
|
|
|
};
|
|
|
|
|
2022-05-23 01:19:01 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
fuse
|
|
|
|
usbmuxd
|
|
|
|
libimobiledevice
|
|
|
|
];
|
2018-08-13 04:49:17 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/libimobiledevice/ifuse";
|
2014-10-30 09:11:24 +00:00
|
|
|
description = "A fuse filesystem implementation to access the contents of iOS devices";
|
|
|
|
longDescription = ''
|
2018-08-13 04:49:17 +00: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 15:50:32 +00:00
|
|
|
platforms = platforms.unix;
|
2019-04-16 11:50:20 +00:00
|
|
|
maintainers = with maintainers; [ infinisil ];
|
2014-10-30 09:11:24 +00:00
|
|
|
};
|
|
|
|
}
|