clean up the vim-diet Nix expression
svn path=/nixpkgs/trunk/; revision=5997
This commit is contained in:
parent
ad329941b7
commit
5b2f05bcb8
@ -1,4 +1,4 @@
|
|||||||
{stdenv, fetchurl, ncurses, dietgcc}:
|
{stdenv, fetchurl, ncurses}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "vim-7.0";
|
name = "vim-7.0";
|
||||||
@ -11,7 +11,5 @@ stdenv.mkDerivation {
|
|||||||
inherit ncurses;
|
inherit ncurses;
|
||||||
buildInputs = [ncurses];
|
buildInputs = [ncurses];
|
||||||
|
|
||||||
NIX_GCC = dietgcc;
|
|
||||||
NIX_GLIBC_FLAGS_SET=1;
|
|
||||||
NIX_CFLAGS_COMPILE="-D_BSD_SOURCE=1";
|
NIX_CFLAGS_COMPILE="-D_BSD_SOURCE=1";
|
||||||
}
|
}
|
||||||
|
@ -2432,8 +2432,9 @@ rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
vimDiet = (import ../applications/editors/vim-diet) {
|
vimDiet = (import ../applications/editors/vim-diet) {
|
||||||
inherit fetchurl stdenv dietgcc;
|
inherit fetchurl;
|
||||||
ncurses = ncursesDiet;
|
ncurses = ncursesDiet;
|
||||||
|
stdenv = overrideGCC stdenv dietgcc;
|
||||||
};
|
};
|
||||||
|
|
||||||
nedit = import ../applications/editors/nedit {
|
nedit = import ../applications/editors/nedit {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user