forked from mirrors/nixpkgs
llvmPackages_4: don't change *.outputs
It was blocking channel(s). See: https://github.com/NixOS/nixpkgs/pull/26818#issuecomment-315020922
This commit is contained in:
parent
9d28cd9ca4
commit
1e1472ed93
|
@ -16,7 +16,7 @@ let
|
|||
# Add man output without introducing extra dependencies.
|
||||
overrideManOutput = drv:
|
||||
let drv-manpages = drv.override { enableManpages = true; }; in
|
||||
drv // { man = drv-manpages.man; outputs = drv.outputs ++ ["man"]; };
|
||||
drv // { man = drv-manpages.man; /*outputs = drv.outputs ++ ["man"];*/ };
|
||||
|
||||
llvm = callPackage ./llvm.nix {
|
||||
inherit compiler-rt_src stdenv;
|
||||
|
|
Loading…
Reference in a new issue