mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
32 lines
1 KiB
Nix
32 lines
1 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, usbmuxd, fuse, libimobiledevice }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ifuse";
|
|
version = "1.1.3";
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libimobiledevice";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0p01rds3vc5864v48swgqw5dv0h937nqnxggryixg9pkvzhc6cx5";
|
|
};
|
|
|
|
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; [ ];
|
|
};
|
|
}
|