darwin purity: ruby-1.9.3

This commit is contained in:
Jude Taylor
2015-06-25 16:36:04 -07:00
parent a8c98bc013
commit 80c62d1325
2 changed files with 6 additions and 2 deletions
@@ -6,6 +6,7 @@
, groff, docSupport ? false
, libyaml, yamlSupport ? true
, ruby_1_9_3, autoreconfHook, bison, useRailsExpress ? true
, libiconv, libobjc
}:
let
@@ -44,7 +45,8 @@ stdenv.mkDerivation rec {
# 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
# running on darwin
++ (op (!cursesSupport && stdenv.isDarwin) readline);
++ (op (!cursesSupport && stdenv.isDarwin) readline)
++ (ops stdenv.isDarwin [ libiconv libobjc ]);
enableParallelBuilding = true;