summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/filesystems/ifuse
diff options
context:
space:
mode:
authorKosyrev Serge <_deepfire@feelingofgreen.ru>2014-10-30 12:11:24 +0300
committerKosyrev Serge <_deepfire@feelingofgreen.ru>2014-10-30 12:11:24 +0300
commitb3ebe093b02c3295d3345c337c796f044043d6a9 (patch)
treefa5703c245ac19139694252a65bc9b126b085597 /pkgs/tools/filesystems/ifuse
parent346f20305b92f6a67cd421bce5916432b1eaf698 (diff)
ifuse: new expression
Diffstat (limited to 'pkgs/tools/filesystems/ifuse')
-rw-r--r--pkgs/tools/filesystems/ifuse/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/ifuse/default.nix b/pkgs/tools/filesystems/ifuse/default.nix
new file mode 100644
index 000000000000..942b6272071c
--- /dev/null
+++ b/pkgs/tools/filesystems/ifuse/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, pkgconfig, usbmuxd, fuse, gnutls, libgcrypt,
+ libplist, libimobiledevice }:
+
+stdenv.mkDerivation rec {
+ name = "ifuse-1.1.3";
+
+ nativeBuildInputs = [ pkgconfig fuse libplist usbmuxd gnutls libgcrypt libimobiledevice ];
+
+ src = fetchurl {
+ url = "${meta.homepage}/downloads/${name}.tar.bz2";
+ sha256 = "1p9a4n36jb194cnp6v57cz2bggwbywaz8pbpb95ch83pzdkdx257";
+ };
+
+ meta = {
+ homepage = http://www.libimobiledevice.org;
+ license = stdenv.lib.licenses.lgpl21Plus;
+ 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.'';
+ inherit (usbmuxd.meta) platforms maintainers;
+ };
+}