summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorDan Peebles <pumpkin@me.com>2015-02-17 21:39:13 -0500
committerDan Peebles <pumpkin@me.com>2015-02-17 21:39:29 -0500
commita68484a0ac286e4c94a9cb692fea04c28ce82345 (patch)
treefbbd4f46adf6eaf5c9c266d18572728cf392797f /pkgs/development/interpreters
parent695136db1c2af6103400b4f76522da36745247d5 (diff)
downloadnixpkgs-a68484a0ac286e4c94a9cb692fea04c28ce82345.tar
nixpkgs-a68484a0ac286e4c94a9cb692fea04c28ce82345.tar.gz
nixpkgs-a68484a0ac286e4c94a9cb692fea04c28ce82345.tar.bz2
nixpkgs-a68484a0ac286e4c94a9cb692fea04c28ce82345.tar.lz
nixpkgs-a68484a0ac286e4c94a9cb692fea04c28ce82345.tar.xz
nixpkgs-a68484a0ac286e4c94a9cb692fea04c28ce82345.tar.zst
nixpkgs-a68484a0ac286e4c94a9cb692fea04c28ce82345.zip
Minor fix for broken ruby evaluation and libiconv
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/ruby/patches.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/ruby/patches.nix b/pkgs/development/interpreters/ruby/patches.nix
index 5a2c206fad5..0cc477c991e 100644
--- a/pkgs/development/interpreters/ruby/patches.nix
+++ b/pkgs/development/interpreters/ruby/patches.nix
@@ -84,7 +84,8 @@ in
     buildFlags =
       [ "--with-xml2-dir=${libxml2} --with-xml2-include=${libxml2}/include/libxml2"
         "--with-xslt-dir=${libxslt}  --use-system-libraries"
-      ] ++ libiconvOrEmpty;
+        libiconv
+      ];
   };
 
   pry = { gemFlags = "--no-ri --no-rdoc"; };