fuse: use macfuse-stubs instead on Darwin
This commit is contained in:
parent
55b7888f43
commit
c595604bed
|
@ -1,5 +1,5 @@
|
||||||
{ lib, stdenv, fetchPypi, fetchpatch, buildPythonPackage, pkg-config, pytest, fuse, attr, which
|
{ lib, stdenv, fetchPypi, fetchpatch, buildPythonPackage, pkg-config, pytest, fuse, attr, which
|
||||||
, contextlib2, macfuse-stubs, DiskArbitration
|
, contextlib2
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -21,9 +21,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
buildInputs =
|
buildInputs = [ fuse ];
|
||||||
lib.optionals stdenv.isLinux [ fuse ]
|
|
||||||
++ lib.optionals stdenv.isDarwin [ DiskArbitration macfuse-stubs ];
|
|
||||||
|
|
||||||
checkInputs = [ pytest which ] ++
|
checkInputs = [ pytest which ] ++
|
||||||
lib.optionals stdenv.isLinux [ attr ];
|
lib.optionals stdenv.isLinux [ attr ];
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchurl, cpio, xar, undmg, libtapi }:
|
{ lib, stdenv, fetchurl, cpio, xar, undmg, libtapi, DiskArbitration }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "macfuse-stubs";
|
pname = "macfuse-stubs";
|
||||||
|
@ -10,6 +10,7 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cpio xar undmg libtapi ];
|
nativeBuildInputs = [ cpio xar undmg libtapi ];
|
||||||
|
propagatedBuildInputs = [ DiskArbitration ];
|
||||||
|
|
||||||
postUnpack = ''
|
postUnpack = ''
|
||||||
xar -xf 'Install macFUSE.pkg'
|
xar -xf 'Install macFUSE.pkg'
|
||||||
|
@ -40,6 +41,11 @@ stdenv.mkDerivation rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://osxfuse.github.io";
|
homepage = "https://osxfuse.github.io";
|
||||||
description = "Build time stubs for FUSE on macOS";
|
description = "Build time stubs for FUSE on macOS";
|
||||||
|
longDescription = ''
|
||||||
|
macFUSE is required for this package to work on macOS. To install macFUSE,
|
||||||
|
use the installer from the <link xlink:href="https://osxfuse.github.io/">
|
||||||
|
project website</link>.
|
||||||
|
'';
|
||||||
platforms = platforms.darwin;
|
platforms = platforms.darwin;
|
||||||
maintainers = with maintainers; [ midchildan ];
|
maintainers = with maintainers; [ midchildan ];
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchurl, fuse, pkg-config, macfuse-stubs }:
|
{ lib, stdenv, fetchurl, fuse, pkg-config }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "1.15.1";
|
version = "1.15.1";
|
||||||
|
@ -10,9 +10,7 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
buildInputs = if stdenv.isDarwin
|
buildInputs = [ fuse ];
|
||||||
then [ macfuse-stubs ]
|
|
||||||
else [ fuse ];
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
ln -s $out/bin/bindfs $out/bin/mount.fuse.bindfs
|
ln -s $out/bin/bindfs $out/bin/mount.fuse.bindfs
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, curl, openssl, libxml2, fuse, macfuse-stubs }:
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, curl, openssl, libxml2, fuse }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "s3fs-fuse";
|
pname = "s3fs-fuse";
|
||||||
|
@ -11,9 +11,7 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "sha256-Agb0tq7B98Ioe0G/XEZCYcFQKnMuYXX9x0yg4Gvu3/k=";
|
sha256 = "sha256-Agb0tq7B98Ioe0G/XEZCYcFQKnMuYXX9x0yg4Gvu3/k=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ curl openssl libxml2 ]
|
buildInputs = [ curl openssl libxml2 fuse ];
|
||||||
++ lib.optionals stdenv.isLinux [ fuse ]
|
|
||||||
++ lib.optionals stdenv.isDarwin [ macfuse-stubs ];
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, cmake, fuse, macfuse-stubs }:
|
{ lib, stdenv, fetchFromGitHub, cmake, fuse }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "unionfs-fuse";
|
pname = "unionfs-fuse";
|
||||||
|
@ -21,11 +21,11 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
postPatch = lib.optionalString stdenv.isDarwin ''
|
postPatch = lib.optionalString stdenv.isDarwin ''
|
||||||
substituteInPlace CMakeLists.txt \
|
substituteInPlace CMakeLists.txt \
|
||||||
--replace '/usr/local/include/osxfuse/fuse' '${macfuse-stubs}/include/fuse'
|
--replace '/usr/local/include/osxfuse/fuse' '${fuse}/include/fuse'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
buildInputs = [ (if stdenv.isDarwin then macfuse-stubs else fuse) ];
|
buildInputs = [ fuse ];
|
||||||
|
|
||||||
# Put the unionfs mount helper in place as mount.unionfs-fuse. This makes it
|
# Put the unionfs mount helper in place as mount.unionfs-fuse. This makes it
|
||||||
# possible to do:
|
# possible to do:
|
||||||
|
|
|
@ -19273,7 +19273,7 @@ in
|
||||||
fusePackages = dontRecurseIntoAttrs (callPackage ../os-specific/linux/fuse {
|
fusePackages = dontRecurseIntoAttrs (callPackage ../os-specific/linux/fuse {
|
||||||
util-linux = util-linuxMinimal;
|
util-linux = util-linuxMinimal;
|
||||||
});
|
});
|
||||||
fuse = lowPrio fusePackages.fuse_2;
|
fuse = lowPrio (if stdenv.isDarwin then macfuse-stubs else fusePackages.fuse_2);
|
||||||
fuse3 = fusePackages.fuse_3;
|
fuse3 = fusePackages.fuse_3;
|
||||||
fuse-common = hiPrio fusePackages.fuse_3.common;
|
fuse-common = hiPrio fusePackages.fuse_3.common;
|
||||||
|
|
||||||
|
@ -19412,6 +19412,7 @@ in
|
||||||
|
|
||||||
macfuse-stubs = callPackage ../os-specific/darwin/macfuse {
|
macfuse-stubs = callPackage ../os-specific/darwin/macfuse {
|
||||||
inherit (darwin) libtapi;
|
inherit (darwin) libtapi;
|
||||||
|
inherit (darwin.apple_sdk.frameworks) DiskArbitration;
|
||||||
};
|
};
|
||||||
|
|
||||||
osxsnarf = callPackage ../os-specific/darwin/osxsnarf { };
|
osxsnarf = callPackage ../os-specific/darwin/osxsnarf { };
|
||||||
|
|
|
@ -3968,7 +3968,6 @@ in {
|
||||||
|
|
||||||
llfuse = callPackage ../development/python-modules/llfuse {
|
llfuse = callPackage ../development/python-modules/llfuse {
|
||||||
inherit (pkgs) fuse;
|
inherit (pkgs) fuse;
|
||||||
inherit (pkgs.darwin.apple_sdk.frameworks) DiskArbitration;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
llvmlite = callPackage ../development/python-modules/llvmlite {
|
llvmlite = callPackage ../development/python-modules/llvmlite {
|
||||||
|
|
Loading…
Reference in New Issue