ifuse: rework expression
This commit is contained in:
parent
ddc73a67b5
commit
098da6633e
@ -1,25 +1,31 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, usbmuxd, fuse, gnutls, libgcrypt,
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, usbmuxd, fuse, libimobiledevice }:
|
||||||
libplist, libimobiledevice }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "ifuse-1.1.3";
|
pname = "ifuse";
|
||||||
|
version = "1.1.3";
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig fuse libplist usbmuxd gnutls libgcrypt libimobiledevice ];
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "${meta.homepage}/downloads/${name}.tar.bz2";
|
owner = "libimobiledevice";
|
||||||
sha256 = "1p9a4n36jb194cnp6v57cz2bggwbywaz8pbpb95ch83pzdkdx257";
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0p01rds3vc5864v48swgqw5dv0h937nqnxggryixg9pkvzhc6cx5";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
nativeBuildInputs = [ autoreconfHook pkgconfig fuse usbmuxd libimobiledevice ];
|
||||||
homepage = http://www.libimobiledevice.org;
|
|
||||||
license = stdenv.lib.licenses.lgpl21Plus;
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/libimobiledevice/ifuse;
|
||||||
description = "A fuse filesystem implementation to access the contents of iOS devices";
|
description = "A fuse filesystem implementation to access the contents of iOS devices";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Mount directories of an iOS device locally using fuse. By default the media
|
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
|
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
|
app, an app's documents folder or even the root filesystem on jailbroken
|
||||||
devices.'';
|
devices.
|
||||||
inherit (usbmuxd.meta) platforms maintainers;
|
'';
|
||||||
|
license = licenses.lgpl21Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user