summary refs log tree commit diff
path: root/pkgs/tools/filesystems/ifuse/default.nix
blob: aef6087d3f283198d64dd802b8865a9248960c60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, usbmuxd, fuse, libimobiledevice }:

stdenv.mkDerivation rec {
  pname = "ifuse";
  version = "2018-10-08";

  src = fetchFromGitHub {
    owner = "libimobiledevice";
    repo = pname;
    rev = "e75d32c34d0e8b80320f0a007d5ecbb3f55ef7f0";
    sha256 = "1b9w2i0sliswlkkb890l9i0rxrf631xywxf8ihygfmjdsfw47h1m";
  };

  nativeBuildInputs = [ autoreconfHook pkgconfig fuse usbmuxd libimobiledevice ];

  meta = with stdenv.lib; {
    homepage = https://github.com/libimobiledevice/ifuse;
    description = "A fuse filesystem implementation to access the contents of iOS devices";
    longDescription = ''
      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;
    platforms = platforms.linux;
    maintainers = with maintainers; [ infinisil ];
  };
}