unionfs-fuse: enable darwin

This commit is contained in:
Konstantin Alekseev 2021-03-07 01:50:29 +03:00
parent f066807b58
commit 5a49c9599d

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake, fuse }:
{ lib, stdenv, fetchFromGitHub, cmake, fuse, osxfuse }:
stdenv.mkDerivation rec {
pname = "unionfs-fuse";
@ -11,16 +11,23 @@ stdenv.mkDerivation rec {
sha256 = "0bwx70x834qgqh53vqp18bhbxbsny80hz922rbgj8k9wj7cbfilm";
};
patches =
[ # Prevent the unionfs daemon from being killed during
# shutdown. See
# http://www.freedesktop.org/wiki/Software/systemd/RootStorageDaemons/
# for details.
./prevent-kill-on-shutdown.patch
];
patches = [
# Prevent the unionfs daemon from being killed during
# shutdown. See
# http://www.freedesktop.org/wiki/Software/systemd/RootStorageDaemons/
# for details.
./prevent-kill-on-shutdown.patch
];
postPatch = lib.optionalString stdenv.isDarwin ''
substituteInPlace CMakeLists.txt \
--replace '/usr/local/include/osxfuse/fuse' '${osxfuse}/include/osxfuse/fuse'
substituteInPlace src/CMakeLists.txt \
--replace 'target_link_libraries(unionfs fuse pthread)' 'target_link_libraries(unionfs osxfuse pthread)'
'';
nativeBuildInputs = [ cmake ];
buildInputs = [ fuse ];
buildInputs = [ (if stdenv.isDarwin then osxfuse else fuse) ];
# Put the unionfs mount helper in place as mount.unionfs-fuse. This makes it
# possible to do:
@ -28,7 +35,7 @@ stdenv.mkDerivation rec {
#
# This must be done in preConfigure because the build process removes
# helper from the source directory during the build.
preConfigure = ''
preConfigure = lib.optionalString (!stdenv.isDarwin) ''
mkdir -p $out/sbin
cp -a mount.unionfs $out/sbin/mount.unionfs-fuse
substituteInPlace $out/sbin/mount.unionfs-fuse --replace mount.fuse ${fuse}/sbin/mount.fuse
@ -39,7 +46,7 @@ stdenv.mkDerivation rec {
description = "FUSE UnionFS implementation";
homepage = "https://github.com/rpodgorny/unionfs-fuse";
license = licenses.bsd3;
platforms = platforms.linux;
platforms = platforms.unix;
maintainers = with maintainers; [ orivej ];
};
}