* Remove builder.

svn path=/nixpkgs/trunk/; revision=877
This commit is contained in:
Eelco Dolstra 2004-03-30 12:35:56 +00:00
parent 085e197ea3
commit 4fc3dd4a5a
2 changed files with 1 additions and 10 deletions

View file

@ -1,9 +0,0 @@
buildinputs=""
. $stdenv/setup
tar xvfz $src
cd ncurses-*
./configure --prefix=$out --with-shared
make
make install
strip -S $out/lib/*.a

View file

@ -2,9 +2,9 @@
stdenv.mkDerivation {
name = "ncurses-5.4";
builder = ./builder.sh;
src = fetchurl {
url = http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.4.tar.gz;
md5 = "069c8880072060373290a4fefff43520";
};
configureFlags = "--with-shared";
}