curlftpfs: add darwin build
This commit is contained in:
parent
21f9e5aac2
commit
f21bfdd75b
@ -1,4 +1,4 @@
|
|||||||
{lib, stdenv, fetchurl, fuse, curl, pkg-config, glib, zlib}:
|
{ lib, stdenv, fetchurl, autoreconfHook, fuse, curl, pkg-config, glib, zlib }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "curlftpfs-0.9.2";
|
name = "curlftpfs-0.9.2";
|
||||||
@ -6,8 +6,18 @@ stdenv.mkDerivation {
|
|||||||
url = "mirror://sourceforge/curlftpfs/curlftpfs-0.9.2.tar.gz";
|
url = "mirror://sourceforge/curlftpfs/curlftpfs-0.9.2.tar.gz";
|
||||||
sha256 = "0n397hmv21jsr1j7zx3m21i7ryscdhkdsyqpvvns12q7qwwlgd2f";
|
sha256 = "0n397hmv21jsr1j7zx3m21i7ryscdhkdsyqpvvns12q7qwwlgd2f";
|
||||||
};
|
};
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||||
buildInputs = [fuse curl glib zlib];
|
buildInputs = [ fuse curl glib zlib ];
|
||||||
|
|
||||||
|
CFLAGS = lib.optionalString stdenv.isDarwin "-D__off_t=off_t";
|
||||||
|
|
||||||
|
postPatch = lib.optionalString stdenv.isDarwin ''
|
||||||
|
# Fix the build on macOS with macFUSE installed. Needs autoreconfHook for
|
||||||
|
# this change to effect
|
||||||
|
substituteInPlace configure.ac --replace \
|
||||||
|
'export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH' \
|
||||||
|
""
|
||||||
|
'';
|
||||||
|
|
||||||
doCheck = false; # fails, doesn't work well too, btw
|
doCheck = false; # fails, doesn't work well too, btw
|
||||||
|
|
||||||
@ -15,7 +25,6 @@ stdenv.mkDerivation {
|
|||||||
description = "Filesystem for accessing FTP hosts based on FUSE and libcurl";
|
description = "Filesystem for accessing FTP hosts based on FUSE and libcurl";
|
||||||
homepage = "http://curlftpfs.sourceforge.net";
|
homepage = "http://curlftpfs.sourceforge.net";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.unix;
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user