ruby: disable docSupport for baseruby
Even if building a Ruby with documentation, there's no reason for its baseruby to waste time building its own documentation as well.
This commit is contained in:
parent
1800e3ca5c
commit
9b39be3376
@ -26,7 +26,10 @@ let
|
||||
ver = version;
|
||||
tag = ver.gitTag;
|
||||
atLeast25 = lib.versionAtLeast ver.majMin "2.5";
|
||||
baseruby = self.override { useRailsExpress = false; };
|
||||
baseruby = self.override {
|
||||
useRailsExpress = false;
|
||||
docSupport = false;
|
||||
};
|
||||
self = lib.makeOverridable (
|
||||
{ stdenv, buildPackages, lib
|
||||
, fetchurl, fetchpatch, fetchFromSavannah, fetchFromGitHub
|
||||
|
Loading…
Reference in New Issue
Block a user