xrootd: provide fuse support (xrootdfs) for Darwin
This commit is contained in:
@@ -47,6 +47,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [
|
||||
curl
|
||||
fuse
|
||||
libkrb5
|
||||
libuuid
|
||||
libxcrypt
|
||||
@@ -56,7 +57,6 @@ stdenv.mkDerivation rec {
|
||||
zlib
|
||||
]
|
||||
++ lib.optionals stdenv.isLinux [
|
||||
fuse
|
||||
systemd
|
||||
voms
|
||||
]
|
||||
|
||||
@@ -1514,7 +1514,12 @@ with pkgs;
|
||||
|
||||
xpaste = callPackage ../tools/text/xpaste { };
|
||||
|
||||
xrootd = callPackage ../tools/networking/xrootd { };
|
||||
xrootd = callPackage ../tools/networking/xrootd {
|
||||
fuse =
|
||||
if hostPlatform.isDarwin then osxfuse
|
||||
else if hostPlatform.isLinux then fuse
|
||||
else null;
|
||||
};
|
||||
|
||||
xtrt = callPackage ../tools/archivers/xtrt { };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user