jmtpfs: add darwin build
This commit is contained in:
parent
f85acdfaa1
commit
6382f577bb
|
@ -1,4 +1,4 @@
|
|||
{ lib, stdenv, fetchFromGitHub, pkg-config, file, fuse, libmtp }:
|
||||
{ lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, file, fuse, libmtp }:
|
||||
|
||||
let version = "0.5"; in
|
||||
stdenv.mkDerivation {
|
||||
|
@ -12,14 +12,22 @@ stdenv.mkDerivation {
|
|||
owner = "JasonFerrara";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Fix Darwin build (https://github.com/JasonFerrara/jmtpfs/pull/12)
|
||||
(fetchpatch {
|
||||
url = "https://github.com/JasonFerrara/jmtpfs/commit/b89084303477d1bc4dc9a887ba9cdd75221f497d.patch";
|
||||
sha256 = "0s7x3jfk8i86rd5bwhj7mb1lffcdlpj9bd7b41s1768ady91rb29";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ file fuse libmtp ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A FUSE filesystem for MTP devices like Android phones";
|
||||
homepage = "https://github.com/JasonFerrara/jmtpfs";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl3Only;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.coconnor ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue