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;
|
ver = version;
|
||||||
tag = ver.gitTag;
|
tag = ver.gitTag;
|
||||||
atLeast25 = lib.versionAtLeast ver.majMin "2.5";
|
atLeast25 = lib.versionAtLeast ver.majMin "2.5";
|
||||||
baseruby = self.override { useRailsExpress = false; };
|
baseruby = self.override {
|
||||||
|
useRailsExpress = false;
|
||||||
|
docSupport = false;
|
||||||
|
};
|
||||||
self = lib.makeOverridable (
|
self = lib.makeOverridable (
|
||||||
{ stdenv, buildPackages, lib
|
{ stdenv, buildPackages, lib
|
||||||
, fetchurl, fetchpatch, fetchFromSavannah, fetchFromGitHub
|
, fetchurl, fetchpatch, fetchFromSavannah, fetchFromGitHub
|
||||||
|
Loading…
Reference in New Issue
Block a user