about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2019-05-06 00:37:43 +0200
committerAlyssa Ross <hi@alyssa.is>2019-06-18 16:09:26 +0000
commitee0c3e4f167715c3d3a5073523711252a6f1426f (patch)
tree6916ec2196cfaff86adf4621c180e664f1e44bce
parentf609c755e2a7ffae93a76fd4159aa9e7812ac1ee (diff)
downloadnixlib-ee0c3e4f167715c3d3a5073523711252a6f1426f.tar
nixlib-ee0c3e4f167715c3d3a5073523711252a6f1426f.tar.gz
nixlib-ee0c3e4f167715c3d3a5073523711252a6f1426f.tar.bz2
nixlib-ee0c3e4f167715c3d3a5073523711252a6f1426f.tar.lz
nixlib-ee0c3e4f167715c3d3a5073523711252a6f1426f.tar.xz
nixlib-ee0c3e4f167715c3d3a5073523711252a6f1426f.tar.zst
nixlib-ee0c3e4f167715c3d3a5073523711252a6f1426f.zip
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.
-rw-r--r--nixpkgs/pkgs/development/interpreters/ruby/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/nixpkgs/pkgs/development/interpreters/ruby/default.nix b/nixpkgs/pkgs/development/interpreters/ruby/default.nix
index b090f0847c13..ad117054632a 100644
--- a/nixpkgs/pkgs/development/interpreters/ruby/default.nix
+++ b/nixpkgs/pkgs/development/interpreters/ruby/default.nix
@@ -28,7 +28,10 @@ let
     isRuby20 = ver.majMin == "2.0";
     isRuby21 = ver.majMin == "2.1";
     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