3
0
Fork 0
forked from mirrors/nixpkgs

clean up the vim-diet Nix expression

svn path=/nixpkgs/trunk/; revision=5997
This commit is contained in:
Armijn Hemel 2006-07-30 20:07:17 +00:00
parent ad329941b7
commit 5b2f05bcb8
2 changed files with 3 additions and 4 deletions

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, ncurses, dietgcc}:
{stdenv, fetchurl, ncurses}:
stdenv.mkDerivation {
name = "vim-7.0";
@ -11,7 +11,5 @@ stdenv.mkDerivation {
inherit ncurses;
buildInputs = [ncurses];
NIX_GCC = dietgcc;
NIX_GLIBC_FLAGS_SET=1;
NIX_CFLAGS_COMPILE="-D_BSD_SOURCE=1";
}

View file

@ -2432,8 +2432,9 @@ rec {
};
vimDiet = (import ../applications/editors/vim-diet) {
inherit fetchurl stdenv dietgcc;
inherit fetchurl;
ncurses = ncursesDiet;
stdenv = overrideGCC stdenv dietgcc;
};
nedit = import ../applications/editors/nedit {