summary refs log tree commit diff
path: root/pkgs/tools/filesystems/jmtpfs
diff options
context:
space:
mode:
authorCorey O'Connor <coreyoconnor@gmail.com>2014-05-11 12:35:28 -0700
committerCorey O'Connor <coreyoconnor@gmail.com>2014-05-11 12:36:51 -0700
commit2efda9dce749bf98b567f519f6ea48c4ed3f978a (patch)
treee9ab8e45eaa0b9beb0de22cad8571545f8a979d2 /pkgs/tools/filesystems/jmtpfs
parentc202f6b09d48de31587525e1350201548935f9e9 (diff)
downloadnixpkgs-2efda9dce749bf98b567f519f6ea48c4ed3f978a.tar
nixpkgs-2efda9dce749bf98b567f519f6ea48c4ed3f978a.tar.gz
nixpkgs-2efda9dce749bf98b567f519f6ea48c4ed3f978a.tar.bz2
nixpkgs-2efda9dce749bf98b567f519f6ea48c4ed3f978a.tar.lz
nixpkgs-2efda9dce749bf98b567f519f6ea48c4ed3f978a.tar.xz
nixpkgs-2efda9dce749bf98b567f519f6ea48c4ed3f978a.tar.zst
nixpkgs-2efda9dce749bf98b567f519f6ea48c4ed3f978a.zip
add jmtpfs - a FUSE filesystem for MTP
Diffstat (limited to 'pkgs/tools/filesystems/jmtpfs')
-rw-r--r--pkgs/tools/filesystems/jmtpfs/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/jmtpfs/default.nix b/pkgs/tools/filesystems/jmtpfs/default.nix
new file mode 100644
index 00000000000..904ade20048
--- /dev/null
+++ b/pkgs/tools/filesystems/jmtpfs/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl
+, autoconf, automake
+, unzip, pkgconfig
+, file, fuse, libmtp }:
+
+stdenv.mkDerivation rec {
+  version = "0.5";
+  name = "jmtpfs-${version}";
+
+  rev = "928fb8f2eec34232e3b2cecc121195caa8865e15";
+
+  src = fetchurl {
+    url = "https://github.com/JasonFerrara/jmtpfs/archive/${rev}.zip";
+    sha256 = "11904f8pkb84gah0h1m7s1hwkp9wa6dzcjj6d8nk4r37lqbillxc";
+  };
+
+  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 ];
+  };
+}