summary refs log tree commit diff
path: root/pkgs/tools/filesystems/mtpfs/default.nix
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-09-02 17:39:42 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-09-02 17:39:42 -0700
commitacd17d21b38c03235a35dab7e8af1df7069f41fd (patch)
treefc73311e83aa9230ae61cc45cf246e437cfaa21e /pkgs/tools/filesystems/mtpfs/default.nix
parentb50567912ae2329a4bc9b9d29900649c18be48f6 (diff)
downloadnixpkgs-acd17d21b38c03235a35dab7e8af1df7069f41fd.tar
nixpkgs-acd17d21b38c03235a35dab7e8af1df7069f41fd.tar.gz
nixpkgs-acd17d21b38c03235a35dab7e8af1df7069f41fd.tar.bz2
nixpkgs-acd17d21b38c03235a35dab7e8af1df7069f41fd.tar.lz
nixpkgs-acd17d21b38c03235a35dab7e8af1df7069f41fd.tar.xz
nixpkgs-acd17d21b38c03235a35dab7e8af1df7069f41fd.tar.zst
nixpkgs-acd17d21b38c03235a35dab7e8af1df7069f41fd.zip
mtpfs: Fix accidental deletion
Diffstat (limited to 'pkgs/tools/filesystems/mtpfs/default.nix')
-rw-r--r--pkgs/tools/filesystems/mtpfs/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/mtpfs/default.nix b/pkgs/tools/filesystems/mtpfs/default.nix
new file mode 100644
index 00000000000..7725b0d7af8
--- /dev/null
+++ b/pkgs/tools/filesystems/mtpfs/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchurl, pkgconfig, fuse, libmtp, glib, libmad, libid3tag }:
+
+stdenv.mkDerivation rec {
+  name = "mtpfs-1.1";
+
+  buildInputs = [ pkgconfig fuse libmtp glib libid3tag libmad ];
+
+  # adding LIBS is a hack, duno why it does not find libid3tag.so by adding buildInputs
+  preConfigure = ''
+    export MAD_CFLAGS=${libmad}/include
+    export MAD_LIBS=${libmad}/lib/libmad.so
+    export LIBS=${libid3tag}/lib/libid3tag.so
+  '';
+
+  src = fetchurl {
+    url = "http://www.adebenham.com/files/mtp/${name}.tar.gz";
+    sha256 = "07acrqb17kpif2xcsqfqh5j4axvsa4rnh6xwnpqab5b9w5ykbbqv";
+  };
+
+  meta = {
+    homepage = https://code.google.com/p/mtpfs/;
+    description = "FUSE Filesystem providing access to MTP devices";
+    platforms = stdenv.lib.platforms.all;
+    maintainers = [ stdenv.lib.maintainers.qknight ];
+  };
+}