3
0
Fork 0
forked from mirrors/nixpkgs

haskell-configuration-common: build hruby with ruby 2.1

Our default version, 1.9, is not supported.
This commit is contained in:
Peter Simons 2015-04-27 15:25:54 +02:00
parent 2028ece4a8
commit 6db9c9a2bb

View file

@ -22,8 +22,8 @@ self: super: {
statistics = dontCheck super.statistics;
text = dontCheck super.text;
# https://github.com/bartavelle/hruby/issues/10
hruby = addExtraLibrary super.hruby pkgs.ruby_2_1;
# The package doesn't compile with ruby 1.9, which is our default at the moment.
hruby = super.hruby.override { ruby = pkgs.ruby_2_1; };
# Doesn't compile with lua 5.2.
hslua = super.hslua.override { lua = pkgs.lua5_1; };