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:
Alyssa Ross 2019-05-06 00:37:43 +02:00
parent 1800e3ca5c
commit 9b39be3376
No known key found for this signature in database
GPG key ID: F9DBED4859B271C0

View file

@ -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