2007-12-13 09:50:22 +00:00
|
|
|
# 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
|
2019-06-16 20:59:06 +01:00
|
|
|
{ source ? "default", callPackage, stdenv, ncurses, pkgconfig, gettext
|
2019-05-24 18:51:59 +01:00
|
|
|
, writeText, config, glib, gtk2-x11, gtk3-x11, lua, python, perl, tcl, ruby
|
2015-09-15 05:27:19 +01:00
|
|
|
, libX11, libXext, libSM, libXpm, libXt, libXaw, libXau, libXmu
|
2015-10-20 00:46:23 +01:00
|
|
|
, libICE
|
2018-04-24 21:56:25 +01:00
|
|
|
, vimPlugins
|
vim_configurable: restore ability to override python for modules
It seems as Python will be fetched from $PATH in Vim 8.1:
```
stat("/home/ma27/bin/python", 0x7ffe57a317b0) = -1 ENOENT (No such file or directory)
stat("/run/wrappers/bin/python", 0x7ffe57a317b0) = -1 ENOENT (No such file or directory)
stat("/home/ma27/.nix-profile/bin/python", 0x7ffe57a317b0) = -1 ENOENT (No such file or directory)
stat("/nix/var/nix/profiles/default/bin/python", 0x7ffe57a317b0) = -1 ENOENT (No such file or directory)
stat("/run/current-system/sw/bin/python", {st_mode=S_IFREG|0555, st_size=291, ...}) = 0
readlink("/run/current-system/sw/bin/python", "/nix/store/ggjkqbvwnv7dflkmdgmmp"..., 4096) = 72
```
This breaks in cases where you want to use a modified Python derivation
for the VIM plugins you use in `vim_configurable`:
```
let
vim_configurable' = vim_configurable.override {
# python with modules for ensime
python = python.withPackages (ps: with ps; [ sexpdata websocket_client ]);
};
in
vim_configurable'.customize {
# ...
}
```
With VIM 8.0 this worked perfectly fine, now it's necessary to install
the modified `python` in $PATH to actually use it, otherwise an error
like this arises:
```
[ensime] A dependency is missing, please `pip2 install sexpdata websocket-client` and restart Vim.
Press ENTER or type command to continue
```
However it should be possible to pass the modified Python to the
modules, the easiest workaround is to write a wrapper which prefixes
$PATH to have the Python derivation available.
2018-05-22 13:07:41 +01:00
|
|
|
, makeWrapper
|
2018-08-09 10:11:24 +01:00
|
|
|
, wrapGAppsHook
|
2019-02-26 11:45:54 +00:00
|
|
|
, runtimeShell
|
2015-10-20 00:46:23 +01:00
|
|
|
|
|
|
|
# apple frameworks
|
|
|
|
, CoreServices, CoreData, Cocoa, Foundation, libobjc, cf-private
|
|
|
|
|
2018-07-21 12:48:19 +01:00
|
|
|
, features ? "huge" # One of tiny, small, normal, big or huge
|
|
|
|
, wrapPythonDrv ? false
|
2018-08-19 21:43:52 +01:00
|
|
|
, guiSupport ? config.vim.gui or "gtk3"
|
2018-07-21 12:48:19 +01:00
|
|
|
, 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
|
2018-08-19 20:52:51 +01:00
|
|
|
, darwinSupport ? config.vim.darwin or false # Enable Darwin support
|
2018-07-21 12:48:19 +01:00
|
|
|
, ftNixSupport ? config.vim.ftNix or true # Add .nix filetype detection and minimal syntax highlighting support
|
2018-08-19 20:39:10 +01:00
|
|
|
, ...
|
|
|
|
}:
|
2014-06-28 21:34:48 +01:00
|
|
|
|
|
|
|
|
2016-11-07 14:10:32 +00:00
|
|
|
let
|
|
|
|
nixosRuntimepath = writeText "nixos-vimrc" ''
|
2014-07-09 21:01:14 +01:00
|
|
|
set nocompatible
|
|
|
|
syntax on
|
|
|
|
|
2014-06-28 21:34:48 +01:00
|
|
|
function! NixosPluginPath()
|
|
|
|
let seen = {}
|
|
|
|
for p in reverse(split($NIX_PROFILES))
|
|
|
|
for d in split(glob(p . '/share/vim-plugins/*'))
|
|
|
|
let pluginname = substitute(d, ".*/", "", "")
|
|
|
|
if !has_key(seen, pluginname)
|
|
|
|
exec 'set runtimepath^='.d
|
2017-07-14 13:22:36 +01:00
|
|
|
let after = d."/after"
|
|
|
|
if isdirectory(after)
|
|
|
|
exec 'set runtimepath^='.after
|
|
|
|
endif
|
2014-06-28 21:34:48 +01:00
|
|
|
let seen[pluginname] = 1
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endfor
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
execute NixosPluginPath()
|
2014-07-09 20:45:26 +01:00
|
|
|
|
|
|
|
if filereadable("/etc/vimrc")
|
|
|
|
source /etc/vimrc
|
|
|
|
elseif filereadable("/etc/vim/vimrc")
|
|
|
|
source /etc/vim/vimrc
|
|
|
|
endif
|
2014-06-28 21:34:48 +01:00
|
|
|
'';
|
2016-11-07 14:10:32 +00:00
|
|
|
|
|
|
|
common = callPackage ./common.nix {};
|
2007-12-12 07:20:41 +00:00
|
|
|
|
2018-07-21 12:48:19 +01:00
|
|
|
isPython3 = python.isPy3 or false;
|
2008-12-20 01:20:35 +00:00
|
|
|
|
2018-07-21 12:48:19 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "vim_configurable-${version}";
|
|
|
|
|
|
|
|
inherit (common) version postPatch hardeningDisable enableParallelBuilding meta;
|
2017-02-05 02:29:59 +00:00
|
|
|
|
2018-07-21 12:48:19 +01:00
|
|
|
src = builtins.getAttr source {
|
|
|
|
"default" = common.src; # latest release
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./cflags-prune.diff ] ++ stdenv.lib.optional ftNixSupport ./ft-nix-support.patch;
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--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"
|
|
|
|
]
|
2018-08-19 20:52:51 +01:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin
|
|
|
|
(if darwinSupport then "--enable-darwin" else "--disable-darwin")
|
2018-07-21 12:48:19 +01:00
|
|
|
++ stdenv.lib.optionals luaSupport [
|
2018-08-19 20:39:10 +01:00
|
|
|
"--with-lua-prefix=${lua}"
|
2018-07-21 12:48:19 +01:00
|
|
|
"--enable-luainterp"
|
|
|
|
]
|
|
|
|
++ stdenv.lib.optionals pythonSupport [
|
2018-07-27 23:14:05 +01:00
|
|
|
"--enable-python${if isPython3 then "3" else ""}interp=yes"
|
2018-07-21 12:48:19 +01:00
|
|
|
"--with-python${if isPython3 then "3" else ""}-config-dir=${python}/lib"
|
2018-07-27 23:14:05 +01:00
|
|
|
"--disable-python${if (!isPython3) then "3" else ""}interp"
|
2018-07-21 12:48:19 +01:00
|
|
|
]
|
|
|
|
++ 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
|
|
|
|
]
|
|
|
|
++ stdenv.lib.optional wrapPythonDrv makeWrapper
|
|
|
|
++ stdenv.lib.optional nlsSupport gettext
|
|
|
|
++ stdenv.lib.optional perlSupport perl
|
2018-08-09 10:11:24 +01:00
|
|
|
++ stdenv.lib.optional (guiSupport == "gtk3") wrapGAppsHook
|
2018-07-21 12:48:19 +01:00
|
|
|
;
|
|
|
|
|
|
|
|
buildInputs = [ ncurses libX11 libXext libSM libXpm libXt libXaw libXau
|
|
|
|
libXmu glib libICE ]
|
2019-05-24 18:51:59 +01:00
|
|
|
++ stdenv.lib.optional (guiSupport == "gtk2") gtk2-x11
|
|
|
|
++ stdenv.lib.optional (guiSupport == "gtk3") gtk3-x11
|
2018-07-21 12:48:19 +01:00
|
|
|
++ 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;
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
'' + stdenv.lib.optionalString ftNixSupport ''
|
|
|
|
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}/syntax/nix.vim runtime/syntax/nix.vim
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
'' + stdenv.lib.optionalString stdenv.isLinux ''
|
2016-11-07 14:45:48 +00:00
|
|
|
patchelf --set-rpath \
|
2018-08-19 20:39:10 +01:00
|
|
|
"$(patchelf --print-rpath $out/bin/vim):${stdenv.lib.makeLibraryPath buildInputs}" \
|
2016-11-07 14:45:48 +00:00
|
|
|
"$out"/bin/{vim,gvim}
|
|
|
|
|
|
|
|
ln -sfn '${nixosRuntimepath}' "$out"/share/vim/vimrc
|
2018-07-21 12:48:19 +01:00
|
|
|
'' + stdenv.lib.optionalString wrapPythonDrv ''
|
|
|
|
wrapProgram "$out/bin/vim" --prefix PATH : "${python}/bin"
|
2018-08-11 08:24:45 +01:00
|
|
|
'' + stdenv.lib.optionalString (guiSupport == "gtk3") ''
|
2018-08-28 11:30:25 +01:00
|
|
|
|
|
|
|
rewrap () {
|
|
|
|
rm -f "$out/bin/$1"
|
2019-02-26 11:45:54 +00:00
|
|
|
echo -e '#!${runtimeShell}\n"'"$out/bin/vim"'" '"$2"' "$@"' > "$out/bin/$1"
|
2018-08-28 11:30:25 +01:00
|
|
|
chmod a+x "$out/bin/$1"
|
|
|
|
}
|
|
|
|
|
2019-02-26 11:45:54 +00:00
|
|
|
rewrap ex -e
|
|
|
|
rewrap view -R
|
|
|
|
rewrap gvim -g
|
|
|
|
rewrap gex -eg
|
|
|
|
rewrap gview -Rg
|
|
|
|
rewrap rvim -Z
|
|
|
|
rewrap rview -RZ
|
|
|
|
rewrap rgvim -gZ
|
2018-08-28 11:30:25 +01:00
|
|
|
rewrap rgview -RgZ
|
|
|
|
rewrap evim -y
|
|
|
|
rewrap eview -yR
|
2019-02-26 11:45:54 +00:00
|
|
|
rewrap vimdiff -d
|
2018-08-28 11:30:25 +01:00
|
|
|
rewrap gvimdiff -gd
|
2018-07-21 12:48:19 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
preInstall = ''
|
|
|
|
mkdir -p $out/share/applications $out/share/icons/{hicolor,locolor}/{16x16,32x32,48x48}/apps
|
2013-06-19 03:05:42 +01:00
|
|
|
'';
|
2013-06-13 09:12:12 +01:00
|
|
|
|
|
|
|
dontStrip = 1;
|
2018-07-21 12:48:19 +01:00
|
|
|
}
|