Build ruby with ncurses and readline

svn path=/nixpkgs/trunk/; revision=5292
This commit is contained in:
Martin Bravenboer 2006-05-11 00:16:23 +00:00
parent 93957f48c3
commit 9a1aec2f31
2 changed files with 5 additions and 2 deletions

@ -1,4 +1,4 @@
{stdenv, fetchurl}:
{stdenv, fetchurl, ncurses, readline}:
stdenv.mkDerivation {
name = "ruby-1.8.4";
@ -6,4 +6,6 @@ stdenv.mkDerivation {
url = http://nix.cs.uu.nl/dist/tarballs/ruby-1.8.4.tar.gz;
md5 = "bd8c2e593e1fa4b01fd98eaf016329bb";
};
buildInputs = [ncurses readline];
}

@ -727,6 +727,7 @@ rec {
(import ../development/compilers/abc/default.nix) {
inherit stdenv fetchurl patches jre;
apacheAnt = apacheAntBlackdown14;
apacheAntAbc = apacheAnt;
javaCup = import ../development/libraries/java/cup {
inherit stdenv fetchurl;
jdk = blackdown;
@ -847,7 +848,7 @@ rec {
};
ruby = (import ../development/interpreters/ruby) {
inherit fetchurl stdenv;
inherit fetchurl stdenv readline ncurses;
};
spidermonkey = (import ../development/interpreters/spidermonkey) {