llvmPackages_6.llvm-manpages: unbreak

enableSharedLibraries defaulted to true which caused a phase to
try to use the $lib output which doesn't exist for the llvm-manpages
derivation.
This commit is contained in:
sternenseemann 2021-03-27 22:40:44 +01:00
parent 768a261c13
commit a3f74559cf

View file

@ -36,6 +36,7 @@ let
llvm-manpages = lowPrio (tools.llvm.override {
enableManpages = true;
enableSharedLibraries = false;
python3 = pkgs.python3; # don't use python-boot
});