darwin purity: ruby-1.9.3
This commit is contained in:
parent
a8c98bc013
commit
80c62d1325
@ -6,6 +6,7 @@
|
|||||||
, groff, docSupport ? false
|
, groff, docSupport ? false
|
||||||
, libyaml, yamlSupport ? true
|
, libyaml, yamlSupport ? true
|
||||||
, ruby_1_9_3, autoreconfHook, bison, useRailsExpress ? true
|
, ruby_1_9_3, autoreconfHook, bison, useRailsExpress ? true
|
||||||
|
, libiconv, libobjc
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
@ -44,7 +45,8 @@ stdenv.mkDerivation rec {
|
|||||||
# support is not enabled, so add readline to the build inputs if curses
|
# support is not enabled, so add readline to the build inputs if curses
|
||||||
# support is disabled (if it's enabled, we already have it) and we're
|
# support is disabled (if it's enabled, we already have it) and we're
|
||||||
# running on darwin
|
# running on darwin
|
||||||
++ (op (!cursesSupport && stdenv.isDarwin) readline);
|
++ (op (!cursesSupport && stdenv.isDarwin) readline)
|
||||||
|
++ (ops stdenv.isDarwin [ libiconv libobjc ]);
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
@ -4965,7 +4965,9 @@ let
|
|||||||
bundlerEnv = callPackage ../development/interpreters/ruby/bundler-env { };
|
bundlerEnv = callPackage ../development/interpreters/ruby/bundler-env { };
|
||||||
|
|
||||||
ruby_1_8_7 = callPackage ../development/interpreters/ruby/ruby-1.8.7.nix { };
|
ruby_1_8_7 = callPackage ../development/interpreters/ruby/ruby-1.8.7.nix { };
|
||||||
ruby_1_9_3 = callPackage ../development/interpreters/ruby/ruby-1.9.3.nix { };
|
ruby_1_9_3 = callPackage ../development/interpreters/ruby/ruby-1.9.3.nix {
|
||||||
|
inherit (darwin) libobjc;
|
||||||
|
};
|
||||||
ruby_2_0_0 = lowPrio (callPackage ../development/interpreters/ruby/ruby-2.0.0.nix { });
|
ruby_2_0_0 = lowPrio (callPackage ../development/interpreters/ruby/ruby-2.0.0.nix { });
|
||||||
ruby_2_1_0 = lowPrio (callPackage ../development/interpreters/ruby/ruby-2.1.0.nix { });
|
ruby_2_1_0 = lowPrio (callPackage ../development/interpreters/ruby/ruby-2.1.0.nix { });
|
||||||
ruby_2_1_1 = lowPrio (callPackage ../development/interpreters/ruby/ruby-2.1.1.nix { });
|
ruby_2_1_1 = lowPrio (callPackage ../development/interpreters/ruby/ruby-2.1.1.nix { });
|
||||||
|
Loading…
Reference in New Issue
Block a user