mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
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
1 changed files with 4 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue