core/pkgs/by-name/fu/fuse/packages.nix
2024-05-13 22:24:10 +01:00

13 lines
326 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;
}