about summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorJude Taylor <me@jude.bio>2015-08-25 17:14:02 -0700
committerJude Taylor <me@jude.bio>2015-08-25 17:14:02 -0700
commit4e8279b43b30d119468e8ba76716c1d6bdcf67f5 (patch)
tree431d55845f13e8d3914a55fac1af98c3fb322534 /pkgs/development/interpreters
parent557fa590426471723e05780666c79ed6afef5cb3 (diff)
downloadnixlib-4e8279b43b30d119468e8ba76716c1d6bdcf67f5.tar
nixlib-4e8279b43b30d119468e8ba76716c1d6bdcf67f5.tar.gz
nixlib-4e8279b43b30d119468e8ba76716c1d6bdcf67f5.tar.bz2
nixlib-4e8279b43b30d119468e8ba76716c1d6bdcf67f5.tar.lz
nixlib-4e8279b43b30d119468e8ba76716c1d6bdcf67f5.tar.xz
nixlib-4e8279b43b30d119468e8ba76716c1d6bdcf67f5.tar.zst
nixlib-4e8279b43b30d119468e8ba76716c1d6bdcf67f5.zip
darwin purity: ruby-2.1.6
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/ruby/ruby-2.1.6.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/ruby/ruby-2.1.6.nix b/pkgs/development/interpreters/ruby/ruby-2.1.6.nix
index c9016a338af2..b4600f5c9aff 100644
--- a/pkgs/development/interpreters/ruby/ruby-2.1.6.nix
+++ b/pkgs/development/interpreters/ruby/ruby-2.1.6.nix
@@ -7,6 +7,7 @@
 , libyaml, yamlSupport ? true
 , libffi, fiddleSupport ? true
 , ruby_2_1_6, autoreconfHook, bison, useRailsExpress ? true
+, libiconv, libobjc, libunwind
 }:
 
 let
@@ -47,7 +48,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 libunwind ]);
 
   enableParallelBuilding = true;