about summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-10-03 14:45:56 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-10-03 15:23:13 +0200
commitf361938b210e057906dcdd5471275ddf265e4a4e (patch)
treeea69e01503464f511e388d36fe69c3c689b42fbc /pkgs/development/interpreters
parentf2cb132c34d115761a19728a2a6a595f4fa08761 (diff)
parentb233ecdca68e08940024da6e4e55e6ef2a20863f (diff)
downloadnixlib-f361938b210e057906dcdd5471275ddf265e4a4e.tar
nixlib-f361938b210e057906dcdd5471275ddf265e4a4e.tar.gz
nixlib-f361938b210e057906dcdd5471275ddf265e4a4e.tar.bz2
nixlib-f361938b210e057906dcdd5471275ddf265e4a4e.tar.lz
nixlib-f361938b210e057906dcdd5471275ddf265e4a4e.tar.xz
nixlib-f361938b210e057906dcdd5471275ddf265e4a4e.tar.zst
nixlib-f361938b210e057906dcdd5471275ddf265e4a4e.zip
Merge staging into closure-size
This makes gcc5 the default builder, etc.
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/ruby/bundler-env/default-gem-config.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/ruby/bundler-env/default-gem-config.nix b/pkgs/development/interpreters/ruby/bundler-env/default-gem-config.nix
index b4e04f6ec904..3ae74057a54f 100644
--- a/pkgs/development/interpreters/ruby/bundler-env/default-gem-config.nix
+++ b/pkgs/development/interpreters/ruby/bundler-env/default-gem-config.nix
@@ -20,7 +20,7 @@
 { lib, fetchurl, writeScript, ruby, libxml2, libxslt, python, stdenv, which
 , libiconv, postgresql, v8_3_16_14, clang, sqlite, zlib, imagemagick
 , pkgconfig , ncurses, xapian, gpgme, utillinux, fetchpatch, tzdata, icu, libffi
-, cmake, libssh2, openssl, mysql
+, cmake, libssh2, openssl, mysql, darwin
 }:
 
 let
@@ -70,6 +70,7 @@ in
       "--with-exslt-lib=${libxslt}/lib"
       "--with-exslt-include=${libxslt}/include"
     ] ++ lib.optional stdenv.isDarwin "--with-iconv-dir=${libiconv}";
+    buildInputs = lib.optional stdenv.isDarwin darwin.libobjc;
   };
 
   pg = attrs: {
@@ -119,6 +120,10 @@ in
     '';
   };
 
+  unf_ext = attrs: {
+    buildInputs = lib.optional stdenv.isDarwin darwin.libobjc;
+  };
+
   xapian-ruby = attrs: {
     # use the system xapian
     buildInputs = [ xapian pkgconfig zlib ];