mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
Build ruby with ncurses and readline
svn path=/nixpkgs/trunk/; revision=5292
This commit is contained in:
parent
93957f48c3
commit
9a1aec2f31
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user