Merge pull request #2618 from coreyoconnor/jmtpfs-upstream
add jmtpfs - a FUSE filesystem for MTP
This commit is contained in:
commit
0bf388b697
23
pkgs/tools/filesystems/jmtpfs/default.nix
Normal file
23
pkgs/tools/filesystems/jmtpfs/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchurl
|
||||
, autoconf, automake
|
||||
, unzip, pkgconfig
|
||||
, file, fuse, libmtp }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.5";
|
||||
name = "jmtpfs-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/JasonFerrara/jmtpfs/archive/v0.5.zip";
|
||||
sha256 = "09fw4g350mjz1mnga7ws5nvnsnfzs8s7cscl300mas1m9s6vmhz6";
|
||||
};
|
||||
|
||||
buildInputs = [ autoconf automake file fuse libmtp pkgconfig unzip ];
|
||||
|
||||
meta = {
|
||||
description = "A FUSE filesystem for MTP devices like Android phones.";
|
||||
homepage = https://github.com/JasonFerrara/jmtpfs;
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
maintainers = [ stdenv.lib.maintainers.coconnor ];
|
||||
};
|
||||
}
|
@ -1296,6 +1296,8 @@ let
|
||||
|
||||
jing = callPackage ../tools/text/xml/jing { };
|
||||
|
||||
jmtpfs = callPackage ../tools/filesystems/jmtpfs { };
|
||||
|
||||
jnettop = callPackage ../tools/networking/jnettop { };
|
||||
|
||||
jq = callPackage ../development/tools/jq {};
|
||||
|
Loading…
Reference in New Issue
Block a user