mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
vim-configurable: Change python versioning
Instead of explicitly stating "I want version 3" or "I want version 2" you now simply specify what the python argument will be, and vim_configurable will set up the flags for you. config.vim.python must be set, still.
This commit is contained in:
parent
222f4b9e2b
commit
c21707ec1f
@ -108,26 +108,14 @@ composableDerivation {
|
|||||||
|
|
||||||
// edf {
|
// edf {
|
||||||
name = "python";
|
name = "python";
|
||||||
feat = "pythoninterp";
|
feat = "python${if python ? isPy3 then "3" else ""}interp";
|
||||||
enable = {
|
enable = {
|
||||||
nativeBuildInputs = [ python ];
|
nativeBuildInputs = [ python ];
|
||||||
} // lib.optionalAttrs stdenv.isDarwin {
|
} // lib.optionalAttrs stdenv.isDarwin {
|
||||||
configureFlags
|
configureFlags
|
||||||
= [ "--enable-pythoninterp=yes"
|
= [ "--enable-python${if python ? isPy3 then "3" else ""}interp=yes"
|
||||||
"--with-python-config-dir=${python}/lib" ];
|
"--with-python${if python ? isPy3 then "3" else ""}-config-dir=${python}/lib"
|
||||||
};
|
"--disable-python${if python ? isPy3 then "" else "3"}interp" ];
|
||||||
}
|
|
||||||
|
|
||||||
// edf {
|
|
||||||
name = "python3";
|
|
||||||
feat = "python3interp";
|
|
||||||
enable = {
|
|
||||||
nativeBuildInputs = [ pkgs.python3 ];
|
|
||||||
} // lib.optionalAttrs stdenv.isDarwin {
|
|
||||||
configureFlags
|
|
||||||
= [ "--enable-python3interp=yes"
|
|
||||||
"--with-python3-config-dir=${pkgs.python3}/lib"
|
|
||||||
"--disable-pythoninterp" ];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -160,7 +148,6 @@ composableDerivation {
|
|||||||
cfg = {
|
cfg = {
|
||||||
luaSupport = config.vim.lua or true;
|
luaSupport = config.vim.lua or true;
|
||||||
pythonSupport = config.vim.python or true;
|
pythonSupport = config.vim.python or true;
|
||||||
python3Support = config.vim.python3 or false;
|
|
||||||
rubySupport = config.vim.ruby or true;
|
rubySupport = config.vim.ruby or true;
|
||||||
nlsSupport = config.vim.nls or false;
|
nlsSupport = config.vim.nls or false;
|
||||||
tclSupport = config.vim.tcl or false;
|
tclSupport = config.vim.tcl or false;
|
||||||
|
Loading…
Reference in New Issue
Block a user