jmtpfs: add darwin build

This commit is contained in:
midchildan 2021-03-28 00:01:45 +09:00
parent f85acdfaa1
commit 6382f577bb
No known key found for this signature in database
GPG key ID: D9A5748BACC6E3C2

View file

@ -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 ];
};
}