Skip to content

Commit

Permalink
sane_backends: disable parallel install
Browse files Browse the repository at this point in the history
parallel install creates a bad symlink at $out/lib/sane/libsane.so.1
which prevents finding plugins.

Fixes NixOS#224569
  • Loading branch information
symphorien committed Apr 10, 2023
1 parent 0e19daa commit f9c5b55
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkgs/applications/graphics/sane/backends/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,10 @@ stdenv.mkDerivation {
''
+ lib.concatStrings (builtins.map installFirmware compatFirmware);

# parallel install creates a bad symlink at $out/lib/sane/libsane.so.1 which prevents finding plugins
# https://github.com/NixOS/nixpkgs/issues/224569
enableParallelInstalling = false;

meta = with lib; {
description = "SANE (Scanner Access Now Easy) backends";
longDescription = ''
Expand Down

0 comments on commit f9c5b55

Please sign in to comment.