forked from mirrors/nixpkgs
add not yet working vim-diet stuff
svn path=/nixpkgs/trunk/; revision=4022
This commit is contained in:
parent
3d2fac2ecd
commit
073ad0c8fc
17
pkgs/applications/editors/vim-diet/default.nix
Normal file
17
pkgs/applications/editors/vim-diet/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{stdenv, fetchurl, ncurses, dietgcc}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "vim-6.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://nix.cs.uu.nl/dist/tarballs/vim-6.3.tar.bz2;
|
||||
md5 = "821fda8f14d674346b87e3ef9cb96389";
|
||||
};
|
||||
|
||||
inherit ncurses;
|
||||
buildInputs = [ncurses];
|
||||
|
||||
NIX_GCC = dietgcc;
|
||||
NIX_GLIBC_FLAGS_SET=1;
|
||||
NIX_CFLAGS_COMPILE="-D_BSD_SOURCE=1";
|
||||
}
|
Loading…
Reference in a new issue