core/pkgs/by-name/fu/fuse/packages.nix

11 lines
318 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ ... }:
res: pkgs: super:
2024-06-30 08:16:52 +00:00
with pkgs; {
fusePackages = dontRecurseIntoAttrs (callPackage ./. { util-linux = util-linuxMinimal; });
2024-05-02 00:46:19 +00:00
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;
}