summary refs log tree commit diff
path: root/pkgs/tools/filesystems/go-mtpfs
diff options
context:
space:
mode:
authorBenno Fünfstück <benno.fuenfstueck@gmail.com>2015-01-07 20:13:40 +0100
committerBenno Fünfstück <benno.fuenfstueck@gmail.com>2015-01-07 20:19:23 +0100
commitacadc608a9bf3835bf89d70dadc7a0efc6d53ec1 (patch)
treeb4c05bd99eef45fdc8086fcba301cd869eb0bb41 /pkgs/tools/filesystems/go-mtpfs
parente0098e8408fc032a0c7b1d5b7a3cd3b4f1e226ef (diff)
go-mtpfs: new package
Diffstat (limited to 'pkgs/tools/filesystems/go-mtpfs')
-rw-r--r--pkgs/tools/filesystems/go-mtpfs/default.nix63
1 files changed, 63 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/go-mtpfs/default.nix b/pkgs/tools/filesystems/go-mtpfs/default.nix
new file mode 100644
index 0000000000000..2dd37acfe8408
--- /dev/null
+++ b/pkgs/tools/filesystems/go-mtpfs/default.nix
@@ -0,0 +1,63 @@
+{ stdenv, lib, pkgconfig, libmtp, go, fetchFromGitHub }:
+
+let
+  goDeps = [
+    {
+      root = "github.com/hanwen/go-mtpfs";
+      src = fetchFromGitHub {
+        owner = "hanwen";
+        repo = "go-mtpfs";
+        rev = "9c2b46050e8ea8574eaec2124867ac7b11e6471d";
+        sha256 = "0kxi18cb078q4wikfajp3yvp802wzfsfdp431j0dg2jdw8y7gfii";
+      };
+    }
+    {
+      root = "github.com/hanwen/go-fuse";
+      src = fetchFromGitHub {
+        owner = "hanwen";
+        repo = "go-fuse";
+        rev = "5d16aa11eef4643de2d91e88a64dcb6138705d58";
+        sha256 = "0lycfhchn88kbs81ypz8m5jh032fpbv14gldrjirf32wm1d4f8pj";
+      };
+    }
+    {
+      root = "github.com/hanwen/usb";
+      src = fetchFromGitHub {
+        owner = "hanwen";
+        repo = "usb";
+        rev = "69aee4530ac705cec7c5344418d982aaf15cf0b1";
+        sha256 = "01k0c2g395j65vm1w37mmrfkg6nm900khjrrizzpmx8f8yf20dky";
+      };
+    }
+  ];
+
+  sources = stdenv.mkDerivation rec {
+    name = "go-deps";
+    buildCommand =
+      lib.concatStrings
+        (map (dep: ''
+                mkdir -p $out/src/`dirname ${dep.root}`
+                ln -s ${dep.src} $out/src/${dep.root}
+              '') goDeps);
+  };
+in stdenv.mkDerivation rec {
+  name = "go-mtpfs";
+
+  src = sources;
+
+  buildInputs = [ go pkgconfig libmtp ];
+
+  installPhase = ''
+    mkdir -p $out/bin
+    export GOPATH=$src
+    go build -v -o $out/bin/go-mtpfs github.com/hanwen/go-mtpfs
+  '';
+
+  meta = with lib; {
+    description = "A simple FUSE filesystem for mounting Android devices as a MTP device";
+    homepage    = https://github.com/hanwen/go-mtpfs;
+    maintainers = with maintainers; [ bennofs ];
+    platforms   = platforms.linux;
+    license     = licenses.bsd3;
+  };
+}