2024-05-02 00:46:19 +00:00
|
|
|
{ ... }:
|
|
|
|
res: pkgs: super:
|
|
|
|
|
2024-05-13 21:24:10 +00:00
|
|
|
with pkgs; {
|
|
|
|
fusePackages =
|
|
|
|
dontRecurseIntoAttrs (callPackage ./. { util-linux = util-linuxMinimal; });
|
2024-05-02 00:46:19 +00:00
|
|
|
fuse = fuse2;
|
2024-05-13 21:24:10 +00:00
|
|
|
fuse2 =
|
|
|
|
lowPrio (if stdenv.isDarwin then macfuse-stubs else fusePackages.fuse_2);
|
2024-05-02 00:46:19 +00:00
|
|
|
fuse3 = fusePackages.fuse_3;
|
|
|
|
fuse-common = hiPrio fusePackages.fuse_3.common;
|
|
|
|
}
|