mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
24 lines
633 B
Nix
24 lines
633 B
Nix
{ stdenv, fetchFromGitHub, pkgconfig, file, fuse, libmtp }:
|
|
|
|
let version = "0.5"; in
|
|
stdenv.mkDerivation {
|
|
name = "jmtpfs-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "1pm68agkhrwgrplrfrnbwdcvx5lrivdmqw8pb5gdmm3xppnryji1";
|
|
rev = "v${version}";
|
|
repo = "jmtpfs";
|
|
owner = "JasonFerrara";
|
|
};
|
|
|
|
buildInputs = [ file fuse libmtp pkgconfig ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A FUSE filesystem for MTP devices like Android phones";
|
|
homepage = https://github.com/JasonFerrara/jmtpfs;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.coconnor ];
|
|
};
|
|
}
|