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];
}