nixpkgs/pkgs/tools/filesystems/ifuse/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.1 KiB
Nix
Raw Normal View History

{ 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";
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;
rev = "6f5b8e410f9615b3369ca5eb5367745e13d83b92";
hash = "sha256-KbuJLS2BWua9DnhLv2KtsQObin0PQwXQwEdgi3lSAPk=";
2014-10-30 09:11:24 +00:00
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
fuse
usbmuxd
libimobiledevice
];
2018-08-13 04:49:17 +00:00
meta = with lib; {
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;
maintainers = with maintainers; [ infinisil ];
2014-10-30 09:11:24 +00:00
};
}