xrootd: provide fuse support (xrootdfs) for Darwin

This commit is contained in:
Shamrock Lee
2022-12-20 13:10:20 +08:00
parent 13e43fc0bc
commit a5b4e5b9d6
2 changed files with 7 additions and 2 deletions
+1 -1
View File
@@ -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
]
+6 -1
View File
@@ -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 { };