nixpkgs/pkgs/tools/filesystems/jmtpfs/default.nix

24 lines
639 B
Nix
Raw Normal View History

2014-05-11 19:35:28 +00:00
{ stdenv, fetchurl
, autoconf, automake
, unzip, pkgconfig
, file, fuse, libmtp }:
stdenv.mkDerivation rec {
version = "0.5";
name = "jmtpfs-${version}";
src = fetchurl {
2014-05-11 20:06:26 +00:00
url = "https://github.com/JasonFerrara/jmtpfs/archive/v0.5.zip";
sha256 = "09fw4g350mjz1mnga7ws5nvnsnfzs8s7cscl300mas1m9s6vmhz6";
2014-05-11 19:35:28 +00:00
};
buildInputs = [ autoconf automake file fuse libmtp pkgconfig unzip ];
meta = {
2014-11-11 13:20:43 +00:00
description = "A FUSE filesystem for MTP devices like Android phones";
2014-05-11 19:35:28 +00:00
homepage = https://github.com/JasonFerrara/jmtpfs;
license = stdenv.lib.licenses.gpl3;
maintainers = [ stdenv.lib.maintainers.coconnor ];
};
}