Merge pull request #43886 from FRidh/vim
qvim, vim_configurable: get rid of composableDerivation
This commit is contained in:
commit
ea91420675
@ -1,7 +1,7 @@
|
|||||||
# TODO tidy up eg The patchelf code is patching gvim even if you don't build it..
|
# TODO tidy up eg The patchelf code is patching gvim even if you don't build it..
|
||||||
# but I have gvim with python support now :) - Marc
|
# but I have gvim with python support now :) - Marc
|
||||||
args@{ source ? "default", callPackage, fetchurl, stdenv, ncurses, pkgconfig, gettext
|
args@{ source ? "default", callPackage, fetchurl, stdenv, ncurses, pkgconfig, gettext
|
||||||
, composableDerivation, writeText, lib, config, glib, gtk2, gtk3, python, perl, tcl, ruby
|
, writeText, lib, config, glib, gtk2, gtk3, python, perl, tcl, ruby
|
||||||
, libX11, libXext, libSM, libXpm, libXt, libXaw, libXau, libXmu
|
, libX11, libXext, libSM, libXpm, libXt, libXaw, libXau, libXmu
|
||||||
, libICE
|
, libICE
|
||||||
, vimPlugins
|
, vimPlugins
|
||||||
@ -10,13 +10,27 @@ args@{ source ? "default", callPackage, fetchurl, stdenv, ncurses, pkgconfig, ge
|
|||||||
# apple frameworks
|
# apple frameworks
|
||||||
, CoreServices, CoreData, Cocoa, Foundation, libobjc, cf-private
|
, CoreServices, CoreData, Cocoa, Foundation, libobjc, cf-private
|
||||||
|
|
||||||
|
, features ? "huge" # One of tiny, small, normal, big or huge
|
||||||
, wrapPythonDrv ? false
|
, wrapPythonDrv ? false
|
||||||
|
, guiSupport ? config.vim.gui or "auto"
|
||||||
|
, luaSupport ? config.vim.lua or true
|
||||||
|
, perlSupport ? config.vim.perl or false # Perl interpreter
|
||||||
|
, pythonSupport ? config.vim.python or true # Python interpreter
|
||||||
|
, rubySupport ? config.vim.ruby or true # Ruby interpreter
|
||||||
|
, nlsSupport ? config.vim.nls or false # Enable NLS (gettext())
|
||||||
|
, tclSupport ? config.vim.tcl or false # Include Tcl interpreter
|
||||||
|
, multibyteSupport ? config.vim.multibyte or false # Enable multibyte editing support
|
||||||
|
, cscopeSupport ? config.vim.cscope or true # Enable cscope interface
|
||||||
|
, netbeansSupport ? config.netbeans or true # Enable NetBeans integration support.
|
||||||
|
, ximSupport ? config.vim.xim or true # less than 15KB, needed for deadkeys
|
||||||
|
# By default, compile with darwin support if we're compiling on darwin, but
|
||||||
|
# allow this to be disabled by setting config.vim.darwin to false
|
||||||
|
, darwinSupport ? stdenv.isDarwin && (config.vim.darwin or true) # Enable Darwin support
|
||||||
|
, ftNixSupport ? config.vim.ftNix or true # Add .nix filetype detection and minimal syntax highlighting support
|
||||||
, ... }: with args;
|
, ... }: with args;
|
||||||
|
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (args.composableDerivation) composableDerivation edf;
|
|
||||||
nixosRuntimepath = writeText "nixos-vimrc" ''
|
nixosRuntimepath = writeText "nixos-vimrc" ''
|
||||||
set nocompatible
|
set nocompatible
|
||||||
syntax on
|
syntax on
|
||||||
@ -48,9 +62,10 @@ let
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
common = callPackage ./common.nix {};
|
common = callPackage ./common.nix {};
|
||||||
in
|
|
||||||
composableDerivation {
|
isPython3 = python.isPy3 or false;
|
||||||
} (fix: rec {
|
|
||||||
|
in stdenv.mkDerivation rec {
|
||||||
|
|
||||||
name = "vim_configurable-${version}";
|
name = "vim_configurable-${version}";
|
||||||
|
|
||||||
@ -69,127 +84,91 @@ composableDerivation {
|
|||||||
}.src;
|
}.src;
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./cflags-prune.diff ];
|
patches = [ ./cflags-prune.diff ] ++ stdenv.lib.optional ftNixSupport ./ft-nix-support.patch;
|
||||||
|
|
||||||
configureFlags
|
configureFlags = [
|
||||||
= [ "--enable-gui=${args.gui}" "--with-features=${args.features}" ];
|
"--enable-gui=${guiSupport}"
|
||||||
|
"--with-features=${features}"
|
||||||
|
"--disable-xsmp" # XSMP session management
|
||||||
|
"--disable-xsmp_interact" # XSMP interaction
|
||||||
|
"--disable-workshop" # Sun Visual Workshop support
|
||||||
|
"--disable-sniff" # Sniff interface
|
||||||
|
"--disable-hangulinput" # Hangul input support
|
||||||
|
"--disable-fontset" # X fontset output support
|
||||||
|
"--disable-acl" # ACL support
|
||||||
|
"--disable-gpm" # GPM (Linux mouse daemon)
|
||||||
|
"--disable-mzschemeinterp"
|
||||||
|
"--disable-gtk_check"
|
||||||
|
"--disable-gtk2_check"
|
||||||
|
"--disable-gnome_check"
|
||||||
|
"--disable-motif_check"
|
||||||
|
"--disable-athena_check"
|
||||||
|
"--disable-nextaf_check"
|
||||||
|
"--disable-carbon_check"
|
||||||
|
"--disable-gtktest"
|
||||||
|
]
|
||||||
|
++ stdenv.lib.optionals luaSupport [
|
||||||
|
"--with-lua-prefix=${args.lua}"
|
||||||
|
"--enable-luainterp"
|
||||||
|
]
|
||||||
|
++ stdenv.lib.optionals pythonSupport [
|
||||||
|
"--enable-python${if isPython3 then "3" else ""}"
|
||||||
|
]
|
||||||
|
++ stdenv.lib.optionals (pythonSupport && stdenv.isDarwin) [ # Why only for Darwin?
|
||||||
|
"--enable-python${if isPython3 then "3" else ""}interp=yes" # Duplicate?
|
||||||
|
"--with-python${if isPython3 then "3" else ""}-config-dir=${python}/lib"
|
||||||
|
"--disable-python${if isPython3 then "" else "3"}interp"
|
||||||
|
]
|
||||||
|
++ stdenv.lib.optional nlsSupport "--enable-nls"
|
||||||
|
++ stdenv.lib.optional perlSupport "--enable-perlinterp"
|
||||||
|
++ stdenv.lib.optional rubySupport "--enable-rubyinterp"
|
||||||
|
++ stdenv.lib.optional tclSupport "--enable-tclinterp"
|
||||||
|
++ stdenv.lib.optional multibyteSupport "--enable-multibyte"
|
||||||
|
++ stdenv.lib.optional cscopeSupport "--enable-cscope"
|
||||||
|
++ stdenv.lib.optional netbeansSupport "--enable-netbeans"
|
||||||
|
++ stdenv.lib.optional ximSupport "--enable-xim";
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [
|
||||||
|
pkgconfig
|
||||||
|
]
|
||||||
|
++ stdenv.lib.optional wrapPythonDrv makeWrapper
|
||||||
|
++ stdenv.lib.optional nlsSupport gettext
|
||||||
|
++ stdenv.lib.optional perlSupport perl
|
||||||
|
;
|
||||||
|
|
||||||
buildInputs
|
buildInputs = [ ncurses libX11 libXext libSM libXpm libXt libXaw libXau
|
||||||
= [ ncurses libX11 libXext libSM libXpm libXt libXaw libXau
|
libXmu glib libICE ]
|
||||||
libXmu glib libICE ] ++ (if args.gui == "gtk3" then [gtk3] else [gtk2]);
|
++ (if guiSupport == "gtk3" then [gtk3] else [gtk2])
|
||||||
|
++ stdenv.lib.optionals darwinSupport [ CoreServices CoreData Cocoa Foundation libobjc cf-private ]
|
||||||
|
++ stdenv.lib.optional luaSupport lua
|
||||||
|
++ stdenv.lib.optional pythonSupport python
|
||||||
|
++ stdenv.lib.optional tclSupport tcl
|
||||||
|
++ stdenv.lib.optional rubySupport ruby;
|
||||||
|
|
||||||
# most interpreters aren't tested yet.. (see python for example how to do it)
|
|
||||||
flags = {
|
|
||||||
ftNix = {
|
|
||||||
patches = [ ./ft-nix-support.patch ];
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
|
'' + stdenv.lib.optionalString ftNixSupport ''
|
||||||
cp ${vimPlugins.vim-nix.src}/ftplugin/nix.vim runtime/ftplugin/nix.vim
|
cp ${vimPlugins.vim-nix.src}/ftplugin/nix.vim runtime/ftplugin/nix.vim
|
||||||
cp ${vimPlugins.vim-nix.src}/indent/nix.vim runtime/indent/nix.vim
|
cp ${vimPlugins.vim-nix.src}/indent/nix.vim runtime/indent/nix.vim
|
||||||
cp ${vimPlugins.vim-nix.src}/syntax/nix.vim runtime/syntax/nix.vim
|
cp ${vimPlugins.vim-nix.src}/syntax/nix.vim runtime/syntax/nix.vim
|
||||||
'';
|
'';
|
||||||
};
|
|
||||||
}
|
NIX_LDFLAGS = stdenv.lib.optionalString (darwinSupport && stdenv.isDarwin)
|
||||||
// edf {
|
|
||||||
name = "darwin";
|
|
||||||
enable = {
|
|
||||||
buildInputs = [ CoreServices CoreData Cocoa Foundation libobjc cf-private ];
|
|
||||||
NIX_LDFLAGS = stdenv.lib.optional stdenv.isDarwin
|
|
||||||
"/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation";
|
"/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation";
|
||||||
};
|
|
||||||
} #Disable Darwin (macOS) support.
|
|
||||||
// edf { name = "xsmp"; } #Disable XSMP session management
|
|
||||||
// edf { name = "xsmp_interact"; } #Disable XSMP interaction
|
|
||||||
// edf { name = "mzscheme"; feat = "mzschemeinterp";} #Include MzScheme interpreter.
|
|
||||||
// edf { name = "perl"; feat = "perlinterp"; enable = { nativeBuildInputs = [perl]; };} #Include Perl interpreter.
|
|
||||||
|
|
||||||
// edf {
|
|
||||||
name = "python";
|
|
||||||
feat = "python${if python ? isPy3 then "3" else ""}interp";
|
|
||||||
enable = {
|
|
||||||
buildInputs = [ python ];
|
|
||||||
} // lib.optionalAttrs wrapPythonDrv {
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
wrapProgram "$out/bin/vim" --prefix PATH : "${python}/bin"
|
'' + stdenv.lib.optionalString stdenv.isLinux ''
|
||||||
'';
|
|
||||||
} // lib.optionalAttrs stdenv.isDarwin {
|
|
||||||
configureFlags
|
|
||||||
= [ "--enable-python${if python ? isPy3 then "3" else ""}interp=yes"
|
|
||||||
"--with-python${if python ? isPy3 then "3" else ""}-config-dir=${python}/lib"
|
|
||||||
"--disable-python${if python ? isPy3 then "" else "3"}interp" ];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
// edf { name = "tcl"; feat = "tclinterp"; enable = { buildInputs = [tcl]; }; } #Include Tcl interpreter.
|
|
||||||
// edf { name = "ruby"; feat = "rubyinterp"; enable = { buildInputs = [ruby]; };} #Include Ruby interpreter.
|
|
||||||
// edf {
|
|
||||||
name = "lua";
|
|
||||||
feat = "luainterp";
|
|
||||||
enable = {
|
|
||||||
buildInputs = [lua];
|
|
||||||
configureFlags = [
|
|
||||||
"--with-lua-prefix=${args.lua}"
|
|
||||||
"--enable-luainterp"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
// edf { name = "cscope"; } #Include cscope interface.
|
|
||||||
// edf { name = "workshop"; } #Include Sun Visual Workshop support.
|
|
||||||
// edf { name = "netbeans"; } #Disable NetBeans integration support.
|
|
||||||
// edf { name = "sniff"; feat = "sniff" ; } #Include Sniff interface.
|
|
||||||
// edf { name = "multibyte"; } #Include multibyte editing support.
|
|
||||||
// edf { name = "hangulinput"; feat = "hangulinput" ;} #Include Hangul input support.
|
|
||||||
// edf { name = "xim"; } #Include XIM input support.
|
|
||||||
// edf { name = "fontset"; } #Include X fontset output support.
|
|
||||||
// edf { name = "acl"; } #Don't check for ACL support.
|
|
||||||
// edf { name = "gpm"; } #Don't use gpm (Linux mouse daemon).
|
|
||||||
// edf { name = "nls"; enable = {nativeBuildInputs = [gettext];}; } #Don't support NLS (gettext()).
|
|
||||||
;
|
|
||||||
|
|
||||||
cfg = {
|
|
||||||
luaSupport = config.vim.lua or true;
|
|
||||||
pythonSupport = config.vim.python or true;
|
|
||||||
rubySupport = config.vim.ruby or true;
|
|
||||||
nlsSupport = config.vim.nls or false;
|
|
||||||
tclSupport = config.vim.tcl or false;
|
|
||||||
multibyteSupport = config.vim.multibyte or false;
|
|
||||||
cscopeSupport = config.vim.cscope or true;
|
|
||||||
netbeansSupport = config.netbeans or true; # eg envim is using it
|
|
||||||
ximSupport = config.vim.xim or true; # less than 15KB, needed for deadkeys
|
|
||||||
|
|
||||||
# by default, compile with darwin support if we're compiling on darwin, but
|
|
||||||
# allow this to be disabled by setting config.vim.darwin to false
|
|
||||||
darwinSupport = stdenv.isDarwin && (config.vim.darwin or true);
|
|
||||||
|
|
||||||
# add .nix filetype detection and minimal syntax highlighting support
|
|
||||||
ftNixSupport = config.vim.ftNix or true;
|
|
||||||
};
|
|
||||||
|
|
||||||
#--enable-gui=OPTS X11 GUI default=auto OPTS=auto/no/gtk/gtk2/gtk3/gnome/gnome2/motif/athena/neXtaw/photon/carbon
|
|
||||||
/*
|
|
||||||
// edf "gtk_check" "gtk_check" { } #If auto-select GUI, check for GTK default=yes
|
|
||||||
// edf "gtk2_check" "gtk2_check" { } #If GTK GUI, check for GTK+ 2 default=yes
|
|
||||||
// edf "gnome_check" "gnome_check" { } #If GTK GUI, check for GNOME default=no
|
|
||||||
// edf "motif_check" "motif_check" { } #If auto-select GUI, check for Motif default=yes
|
|
||||||
// edf "athena_check" "athena_check" { } #If auto-select GUI, check for Athena default=yes
|
|
||||||
// edf "nextaw_check" "nextaw_check" { } #If auto-select GUI, check for neXtaw default=yes
|
|
||||||
// edf "carbon_check" "carbon_check" { } #If auto-select GUI, check for Carbon default=yes
|
|
||||||
// edf "gtktest" "gtktest" { } #Do not try to compile and run a test GTK program
|
|
||||||
*/
|
|
||||||
|
|
||||||
preInstall = ''
|
|
||||||
mkdir -p $out/share/applications $out/share/icons/{hicolor,locolor}/{16x16,32x32,48x48}/apps
|
|
||||||
'';
|
|
||||||
|
|
||||||
postInstall = stdenv.lib.optionalString stdenv.isLinux ''
|
|
||||||
patchelf --set-rpath \
|
patchelf --set-rpath \
|
||||||
"$(patchelf --print-rpath $out/bin/vim):${lib.makeLibraryPath buildInputs}" \
|
"$(patchelf --print-rpath $out/bin/vim):${lib.makeLibraryPath buildInputs}" \
|
||||||
"$out"/bin/{vim,gvim}
|
"$out"/bin/{vim,gvim}
|
||||||
|
|
||||||
ln -sfn '${nixosRuntimepath}' "$out"/share/vim/vimrc
|
ln -sfn '${nixosRuntimepath}' "$out"/share/vim/vimrc
|
||||||
|
'' + stdenv.lib.optionalString wrapPythonDrv ''
|
||||||
|
wrapProgram "$out/bin/vim" --prefix PATH : "${python}/bin"
|
||||||
|
'';
|
||||||
|
|
||||||
|
preInstall = ''
|
||||||
|
mkdir -p $out/share/applications $out/share/icons/{hicolor,locolor}/{16x16,32x32,48x48}/apps
|
||||||
'';
|
'';
|
||||||
|
|
||||||
dontStrip = 1;
|
dontStrip = 1;
|
||||||
})
|
}
|
||||||
|
@ -1,22 +1,38 @@
|
|||||||
args@{ fetchgit, stdenv, ncurses, pkgconfig, gettext
|
args@{ fetchgit, stdenv, ncurses, pkgconfig, gettext
|
||||||
, composableDerivation, lib, config, python, perl, tcl, ruby, qt4
|
, lib, config, python, perl, tcl, ruby, qt4
|
||||||
, libX11, libXext, libSM, libXpm, libXt, libXaw, libXau, libXmu
|
, libX11, libXext, libSM, libXpm, libXt, libXaw, libXau, libXmu
|
||||||
, libICE, ... }: with args;
|
, libICE
|
||||||
|
, lua
|
||||||
|
, features
|
||||||
|
, luaSupport ? config.vim.lua or true
|
||||||
|
, perlSupport ? config.vim.perl or false # Perl interpreter
|
||||||
|
, pythonSupport ? config.vim.python or true
|
||||||
|
, rubySupport ? config.vim.ruby or true
|
||||||
|
, nlsSupport ? config.vim.nls or false
|
||||||
|
, tclSupport ? config.vim.tcl or false
|
||||||
|
, multibyteSupport ? config.vim.multibyte or false
|
||||||
|
, cscopeSupport ? config.vim.cscope or false
|
||||||
|
, netbeansSupport ? config.netbeans or true # eg envim is using it
|
||||||
|
|
||||||
|
# by default, compile with darwin support if we're compiling on darwin, but
|
||||||
|
# allow this to be disabled by setting config.vim.darwin to false
|
||||||
|
, darwinSupport ? stdenv.isDarwin && (config.vim.darwin or true)
|
||||||
|
|
||||||
|
# add .nix filetype detection and minimal syntax highlighting support
|
||||||
|
, ftNixSupport ? config.vim.ftNix or true
|
||||||
|
|
||||||
|
, ... }: with args;
|
||||||
|
|
||||||
let tag = "20140827";
|
let tag = "20140827";
|
||||||
sha256 = "0ncgbcm23z25naicxqkblz0mcl1zar2qwgi37y5ar8q8884w9ml2";
|
sha256 = "0ncgbcm23z25naicxqkblz0mcl1zar2qwgi37y5ar8q8884w9ml2";
|
||||||
in
|
in {
|
||||||
|
|
||||||
let inherit (args.composableDerivation) composableDerivation edf; in
|
|
||||||
composableDerivation {
|
|
||||||
} (fix: {
|
|
||||||
|
|
||||||
name = "qvim-7.4." + tag;
|
name = "qvim-7.4." + tag;
|
||||||
|
|
||||||
enableParallelBuilding = true; # test this
|
enableParallelBuilding = true; # test this
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = https://bitbucket.org/equalsraf/vim-qt.git ;
|
url = https://bitbucket.org/equalsraf/vim-qt.git;
|
||||||
rev = "refs/tags/package-" + tag;
|
rev = "refs/tags/package-" + tag;
|
||||||
inherit sha256;
|
inherit sha256;
|
||||||
};
|
};
|
||||||
@ -25,85 +41,53 @@ composableDerivation {
|
|||||||
# to meta.platforms.unix
|
# to meta.platforms.unix
|
||||||
preConfigure = assert (! stdenv.isDarwin); "";
|
preConfigure = assert (! stdenv.isDarwin); "";
|
||||||
|
|
||||||
configureFlags = [ "--with-vim-name=qvim" "--enable-gui=qt" "--with-features=${args.features}" ];
|
configureFlags = [
|
||||||
|
"--with-vim-name=qvim"
|
||||||
|
"--enable-gui=qt"
|
||||||
|
"--with-features=${features}"
|
||||||
|
"--disable-xsmp"
|
||||||
|
"--disable-xsmp_interact"
|
||||||
|
"--disable-workshop" # Sun Visual Workshop support
|
||||||
|
"--disable-sniff" # Sniff interface
|
||||||
|
"--disable-hangulinput" # Hangul input support
|
||||||
|
"--disable-fontset" # X fontset output support
|
||||||
|
"--disable-acl" # ACL support
|
||||||
|
"--disable-gpm" # GPM (Linux mouse daemon)
|
||||||
|
"--disable-mzscheme"
|
||||||
|
]
|
||||||
|
++ stdenv.lib.optionals luaSupport [
|
||||||
|
"--with-lua-prefix=${lua}"
|
||||||
|
"--enable-luainterp"
|
||||||
|
]
|
||||||
|
++ stdenv.lib.optional pythonSupport "--enable-pythoninterp"
|
||||||
|
++ stdenv.lib.optional (pythonSupport && stdenv.isDarwin) "--with-python-config-dir=${python}/lib"
|
||||||
|
++ stdenv.lib.optional nlsSupport "--enable-nls"
|
||||||
|
++ stdenv.lib.optional perlSupport "--enable-perlinterp"
|
||||||
|
++ stdenv.lib.optional rubySupport "--enable-rubyinterp"
|
||||||
|
++ stdenv.lib.optional tclSupport "--enable-tcl"
|
||||||
|
++ stdenv.lib.optional multibyteSupport "--enable-multibyte"
|
||||||
|
++ stdenv.lib.optional darwinSupport "--enable-darwin"
|
||||||
|
++ stdenv.lib.optional cscopeSupport "--enable-cscope";
|
||||||
|
|
||||||
nativeBuildInputs
|
nativeBuildInputs = [ ncurses pkgconfig libX11 libXext libSM libXpm libXt libXaw
|
||||||
= [ ncurses pkgconfig libX11 libXext libSM libXpm libXt libXaw libXau
|
libXau libXmu libICE qt4
|
||||||
libXmu libICE qt4];
|
]
|
||||||
|
++ stdenv.lib.optional nlsSupport gettext
|
||||||
|
++ stdenv.lib.optional perlSupport perl
|
||||||
|
++ stdenv.lib.optional pythonSupport python
|
||||||
|
++ stdenv.lib.optional tclSupport tcl
|
||||||
|
++ stdenv.lib.optional rubySupport ruby
|
||||||
|
++ stdenv.lib.optional luaSupport lua
|
||||||
|
;
|
||||||
|
|
||||||
# most interpreters aren't tested yet.. (see python for example how to do it)
|
postPatch = ''
|
||||||
flags = {
|
'' + stdenv.lib.optionalString ftNixSupport ''
|
||||||
ftNix = {
|
|
||||||
# because we cd to src in the main patch phase, we can't just add this
|
# because we cd to src in the main patch phase, we can't just add this
|
||||||
# patch to the list, we have to apply it manually
|
# patch to the list, we have to apply it manually
|
||||||
postPatch = ''
|
|
||||||
cd runtime
|
cd runtime
|
||||||
patch -p2 < ${./ft-nix-support.patch}
|
patch -p2 < ${./ft-nix-support.patch}
|
||||||
cd ..
|
cd ..
|
||||||
'';
|
'';
|
||||||
};
|
|
||||||
}
|
|
||||||
// edf { name = "darwin"; } #Disable Darwin (macOS) support.
|
|
||||||
// edf { name = "xsmp"; } #Disable XSMP session management
|
|
||||||
// edf { name = "xsmp_interact"; } #Disable XSMP interaction
|
|
||||||
// edf { name = "mzscheme"; } #Include MzScheme interpreter.
|
|
||||||
// edf { name = "perl"; feat = "perlinterp"; enable = { nativeBuildInputs = [perl]; };} #Include Perl interpreter.
|
|
||||||
|
|
||||||
// edf {
|
|
||||||
name = "python";
|
|
||||||
feat = "pythoninterp";
|
|
||||||
enable = {
|
|
||||||
nativeBuildInputs = [ python ];
|
|
||||||
} // lib.optionalAttrs stdenv.isDarwin {
|
|
||||||
configureFlags
|
|
||||||
= [ "--enable-pythoninterp=yes"
|
|
||||||
"--with-python-config-dir=${python}/lib" ];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
// edf { name = "tcl"; enable = { nativeBuildInputs = [tcl]; }; } #Include Tcl interpreter.
|
|
||||||
// edf { name = "ruby"; feat = "rubyinterp"; enable = { nativeBuildInputs = [ruby]; };} #Include Ruby interpreter.
|
|
||||||
// edf {
|
|
||||||
name = "lua";
|
|
||||||
feat = "luainterp";
|
|
||||||
enable = {
|
|
||||||
nativeBuildInputs = [lua];
|
|
||||||
configureFlags = [
|
|
||||||
"--with-lua-prefix=${args.lua}"
|
|
||||||
"--enable-luainterp"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
// edf { name = "cscope"; } #Include cscope interface.
|
|
||||||
// edf { name = "workshop"; } #Include Sun Visual Workshop support.
|
|
||||||
// edf { name = "netbeans"; } #Disable NetBeans integration support.
|
|
||||||
// edf { name = "sniff"; feat = "sniff" ; } #Include Sniff interface.
|
|
||||||
// edf { name = "multibyte"; } #Include multibyte editing support.
|
|
||||||
// edf { name = "hangulinput"; feat = "hangulinput" ;} #Include Hangul input support.
|
|
||||||
// edf { name = "xim"; } #Include XIM input support.
|
|
||||||
// edf { name = "fontset"; } #Include X fontset output support.
|
|
||||||
// edf { name = "acl"; } #Don't check for ACL support.
|
|
||||||
// edf { name = "gpm"; } #Don't use gpm (Linux mouse daemon).
|
|
||||||
// edf { name = "nls"; enable = {nativeBuildInputs = [gettext];}; } #Don't support NLS (gettext()).
|
|
||||||
;
|
|
||||||
|
|
||||||
cfg = {
|
|
||||||
luaSupport = config.vim.lua or true;
|
|
||||||
pythonSupport = config.vim.python or true;
|
|
||||||
rubySupport = config.vim.ruby or true;
|
|
||||||
nlsSupport = config.vim.nls or false;
|
|
||||||
tclSupport = config.vim.tcl or false;
|
|
||||||
multibyteSupport = config.vim.multibyte or false;
|
|
||||||
cscopeSupport = config.vim.cscope or false;
|
|
||||||
netbeansSupport = config.netbeans or true; # eg envim is using it
|
|
||||||
|
|
||||||
# by default, compile with darwin support if we're compiling on darwin, but
|
|
||||||
# allow this to be disabled by setting config.vim.darwin to false
|
|
||||||
darwinSupport = stdenv.isDarwin && (config.vim.darwin or true);
|
|
||||||
|
|
||||||
# add .nix filetype detection and minimal syntax highlighting support
|
|
||||||
ftNixSupport = config.vim.ftNix or true;
|
|
||||||
};
|
|
||||||
|
|
||||||
postInstall = stdenv.lib.optionalString stdenv.isLinux ''
|
postInstall = stdenv.lib.optionalString stdenv.isLinux ''
|
||||||
rpath=`patchelf --print-rpath $out/bin/qvim`;
|
rpath=`patchelf --print-rpath $out/bin/qvim`;
|
||||||
@ -125,5 +109,5 @@ composableDerivation {
|
|||||||
maintainers = with maintainers; [ smironov ttuegel ];
|
maintainers = with maintainers; [ smironov ttuegel ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
})
|
}
|
||||||
|
|
||||||
|
@ -18716,12 +18716,6 @@ with pkgs;
|
|||||||
inherit (darwin.apple_sdk.frameworks) CoreServices Cocoa Foundation CoreData;
|
inherit (darwin.apple_sdk.frameworks) CoreServices Cocoa Foundation CoreData;
|
||||||
inherit (darwin) libobjc cf-private;
|
inherit (darwin) libobjc cf-private;
|
||||||
inherit lua;
|
inherit lua;
|
||||||
|
|
||||||
features = "huge"; # one of tiny, small, normal, big or huge
|
|
||||||
gui = config.vim.gui or "auto";
|
|
||||||
|
|
||||||
# optional features by flags
|
|
||||||
flags = [ "python" "X11" ]; # only flag "X11" by now
|
|
||||||
});
|
});
|
||||||
|
|
||||||
vimNox = lowPrio (vim_configurable.override {
|
vimNox = lowPrio (vim_configurable.override {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user