summary refs log tree commit diff
path: root/pkgs/tools/filesystems/jmtpfs/default.nix
blob: 5ee793977071e3857eae5dd1d1af00189a34c428 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 ];
  };
}