e60a0c2591
svn path=/nixpkgs/trunk/; revision=12573
65 lines
1.8 KiB
Nix
65 lines
1.8 KiB
Nix
args:
|
|
let
|
|
defList = [];
|
|
#stdenv and fetchurl are added automatically
|
|
getVal = (args.lib.getValue args defList);
|
|
check = args.lib.checkFlag args;
|
|
reqsList = [
|
|
["gtkGUI" "glib" "gtk" "pkgconfig" "libXpm" "libXext" "x11Support"]
|
|
["athenaGUI" "libXau" "libXt" "libXaw" "libXpm" "libXext" "x11Support"]
|
|
["x11Support" "libX11"]
|
|
["hugeFeatures"]
|
|
["pythonSupport" "python"]
|
|
["perlSupport" "perl"]
|
|
["tclSupport" "tcl"]
|
|
["true" "ncurses"]
|
|
["false" "libSM"]
|
|
];
|
|
nameSuffixes = [
|
|
"hugeFeatures" "-huge"
|
|
"x11Support" "-X11"
|
|
"pythonSupport" "-python"
|
|
"perlSupport" "-perl"
|
|
"tclSupport" "-tcl"
|
|
"ximSupport" "-xim"
|
|
];
|
|
configFlags = [
|
|
"true" " "
|
|
"x11Support" " --enable-gui=auto "
|
|
"hugeFeatures" "--with-features=huge --enable-cscope --enable-multibyte --enable-xsmp "
|
|
"pythonSupport" " --enable-pythoninterp "
|
|
"perlSupport" " --enable-perlinterp "
|
|
"tclSupport" " --enable-tclinterp "
|
|
"ximSupport" " --enable-xim "
|
|
];
|
|
buildInputsNames = args.lib.filter (x: (null!=getVal x))
|
|
(args.lib.uniqList {inputList =
|
|
(args.lib.concatLists (map
|
|
(x:(if (x==[]) then [] else builtins.tail x))
|
|
reqsList));});
|
|
in
|
|
assert args.lib.checkReqs args defList reqsList;
|
|
args.stdenv.mkDerivation {
|
|
name = args.lib.condConcat "vim-7.2" nameSuffixes check;
|
|
|
|
src = args.fetchurl {
|
|
url = ftp://ftp.vim.org/pub/vim/unix/vim-7.2.tar.bz2;
|
|
sha256 = "076ydlfcmlnldjzarahg58vflawn083y90is6sz2j4klg9mj2iim";
|
|
};
|
|
|
|
inherit (args) ncurses;
|
|
|
|
buildInputs = args.lib.filter (x: (x!=null)) (map getVal buildInputsNames);
|
|
|
|
postInstall = "ln -s $out/bin/vim $out/bin/vi";
|
|
preBuild="touch src/auto/link.sed";
|
|
configureFlags = args.lib.condConcat "" configFlags check;
|
|
|
|
NIX_LDFLAGS = "-lpthread -lutil";
|
|
|
|
meta = {
|
|
description = "The most popular clone of the VI editor";
|
|
homepage = http://www.vim.org;
|
|
};
|
|
}
|