Ruby
svn path=/nixpkgs/trunk/; revision=2990
This commit is contained in:
parent
ca96422b7d
commit
24d6f803f0
9
pkgs/development/interpreters/ruby/default.nix
Normal file
9
pkgs/development/interpreters/ruby/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
@ -489,6 +489,10 @@ rec {
|
|||||||
inherit fetchurl stdenv zlib;
|
inherit fetchurl stdenv zlib;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ruby = (import ../development/interpreters/ruby) {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
dylan = (import ../development/compilers/gwydion-dylan) {
|
dylan = (import ../development/compilers/gwydion-dylan) {
|
||||||
inherit fetchurl stdenv perl boehmgc yacc flex readline;
|
inherit fetchurl stdenv perl boehmgc yacc flex readline;
|
||||||
dylan =
|
dylan =
|
||||||
|
Loading…
Reference in New Issue
Block a user