* Get rid of some dietlibc stuff.

svn path=/nixpkgs/trunk/; revision=16132
This commit is contained in:
Eelco Dolstra 2009-07-02 08:58:58 +00:00
parent 0281a7deb8
commit 255a4a91f0
4 changed files with 0 additions and 51 deletions

View File

@ -1,19 +0,0 @@
{stdenv, fetchurl, ncurses}:
stdenv.mkDerivation {
name = "vim-7.0";
src = fetchurl {
url = ftp://ftp.vim.org/pub/vim/unix/vim-7.0.tar.bz2;
md5 = "4ca69757678272f718b1041c810d82d8";
};
inherit ncurses;
buildInputs = [ncurses];
NIX_CFLAGS_COMPILE="-D_BSD_SOURCE=1";
meta = {
homepage = http://www.vim.org;
};
}

View File

@ -1,5 +0,0 @@
source $stdenv/setup
configureFlags="--includedir=$out/include --without-cxx-binding"
genericBuild

View File

@ -1,10 +0,0 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "ncurses-5.5";
builder = ./builder.sh;
src = fetchurl {
url = mirror://gnu/ncurses/ncurses-5.5.tar.gz;
md5 = "e73c1ac10b4bfc46db43b2ddfd6244ef";
};
}

View File

@ -3838,11 +3838,6 @@ let
unicode = (system != "i686-cygwin");
};
ncursesDiet = import ../development/libraries/ncurses-diet {
inherit fetchurl;
stdenv = useDietLibC stdenv;
};
neon = neon026;
neon026 = import ../development/libraries/neon/0.26.nix {
@ -6739,12 +6734,6 @@ let
inherit fetchurl stdenv ncurses gettext;
};
nanoDiet = lowPrio (appendToName "diet" (import ../applications/editors/nano {
inherit fetchurl gettext;
ncurses = ncursesDiet;
stdenv = useDietLibC stdenv;
}));
nedit = import ../applications/editors/nedit {
inherit fetchurl stdenv x11;
inherit (xlibs) libXpm;
@ -7128,12 +7117,6 @@ let
inherit fetchurl stdenv ncurses lib;
};
vimDiet = lowPrio (appendToName "diet" (import ../applications/editors/vim-diet {
inherit fetchurl;
ncurses = ncursesDiet;
stdenv = useDietLibC stdenv;
}));
vimHugeX = import ../applications/editors/vim {
inherit fetchurl stdenv lib ncurses pkgconfig
perl python tcl;