mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #301211 from wegank/fuse2-init
fuse2: add to top-level
This commit is contained in:
commit
42cd414c7f
2 changed files with 4 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
|||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, autoreconfHook
|
||||
, fuse
|
||||
, fuse2
|
||||
, unrar_6
|
||||
}:
|
||||
|
||||
|
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
buildInputs = [ fuse unrar_6 ];
|
||||
buildInputs = [ fuse2 unrar_6 ];
|
||||
|
||||
configureFlags = [
|
||||
"--with-unrar=${unrar_6.src}/unrar"
|
||||
|
|
|
@ -27311,7 +27311,8 @@ with pkgs;
|
|||
fusePackages = dontRecurseIntoAttrs (callPackage ../os-specific/linux/fuse {
|
||||
util-linux = util-linuxMinimal;
|
||||
});
|
||||
fuse = lowPrio (if stdenv.isDarwin then macfuse-stubs else fusePackages.fuse_2);
|
||||
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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue