svn path=/nixpkgs/trunk/; revision=2990
This commit is contained in:
Martin Bravenboer 2005-05-04 23:36:28 +00:00
parent ca96422b7d
commit 24d6f803f0
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "ruby-1.8.2";
src = fetchurl {
url = ftp://ftp.ruby-lang.org/pub/ruby/ruby-1.8.2.tar.gz;
md5 = "8ffc79d96f336b80f2690a17601dea9b";
};
}

View File

@ -489,6 +489,10 @@ rec {
inherit fetchurl stdenv zlib;
};
ruby = (import ../development/interpreters/ruby) {
inherit fetchurl stdenv;
};
dylan = (import ../development/compilers/gwydion-dylan) {
inherit fetchurl stdenv perl boehmgc yacc flex readline;
dylan =