llfuse: fix darwin build
This commit is contained in:
parent
fa6c8b656b
commit
3a4c9d4b62
|
@ -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
|
, contextlib2, macfuse-stubs, DiskArbitration
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -23,7 +23,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
buildInputs =
|
buildInputs =
|
||||||
lib.optionals stdenv.isLinux [ fuse ]
|
lib.optionals stdenv.isLinux [ fuse ]
|
||||||
++ lib.optionals stdenv.isDarwin [ macfuse-stubs ];
|
++ lib.optionals stdenv.isDarwin [ DiskArbitration macfuse-stubs ];
|
||||||
|
|
||||||
checkInputs = [ pytest which ] ++
|
checkInputs = [ pytest which ] ++
|
||||||
lib.optionals stdenv.isLinux [ attr ];
|
lib.optionals stdenv.isLinux [ attr ];
|
||||||
|
|
|
@ -3954,6 +3954,7 @@ 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