* added readline

svn path=/nixpkgs/trunk/; revision=1230
This commit is contained in:
Rob Vermaas 2004-08-05 13:49:26 +00:00
parent a4215841ac
commit 6412b0c5f2
4 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,10 @@
set -x
. $stdenv/setup
tar xvfz $src
cd readline-*
./configure --prefix=$out --with-curses
make
make install
#strip -S $out/lib/*/*.a

View File

@ -0,0 +1,12 @@
{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation {
name = "readline-5.0";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.cwru.edu/pub/bash/readline-5.0.tar.gz ;
md5 = "9a39d15f1ed592883f8c6671e8c13120";
};
inherit ncurses;
buildInputs = [ncurses];
}

View File

@ -529,6 +529,10 @@ rec {
inherit fetchurl stdenv pkgconfig wxGTK python;
};
readline = (import ../development/libraries/readline) {
inherit fetchurl stdenv ncurses;
};
### SERVERS

View File

@ -24,6 +24,7 @@ let {
gnum4
valgrind
texinfo
readline
octave
gnumake
bisonnew