core/pkgs/by-name/fu/fuse/packages.nix
2024-06-30 09:16:52 +01:00

11 lines
318 B
Nix

{ ... }:
res: pkgs: super:
with pkgs; {
fusePackages = dontRecurseIntoAttrs (callPackage ./. { util-linux = util-linuxMinimal; });
fuse = fuse2;
fuse2 = lowPrio (if stdenv.isDarwin then macfuse-stubs else fusePackages.fuse_2);
fuse3 = fusePackages.fuse_3;
fuse-common = hiPrio fusePackages.fuse_3.common;
}