2021-07-04 02:40:35 +00:00
|
|
|
|
{ ripgrep
|
|
|
|
|
, git
|
|
|
|
|
, fzf
|
|
|
|
|
, makeWrapper
|
|
|
|
|
, vim_configurable
|
|
|
|
|
, vimPlugins
|
|
|
|
|
, fetchFromGitHub
|
|
|
|
|
, lib
|
|
|
|
|
, stdenv
|
|
|
|
|
, formats
|
|
|
|
|
, runCommand
|
|
|
|
|
, spacevim_config ? import ./init.nix
|
|
|
|
|
}:
|
2021-02-17 17:02:09 +00:00
|
|
|
|
|
2020-12-09 12:39:15 +00:00
|
|
|
|
let
|
2021-07-04 02:40:35 +00:00
|
|
|
|
format = formats.toml { };
|
2020-12-09 12:39:15 +00:00
|
|
|
|
vim-customized = vim_configurable.customize {
|
|
|
|
|
name = "vim";
|
|
|
|
|
# Not clear at the moment how to import plugins such that
|
|
|
|
|
# SpaceVim finds them and does not auto download them to
|
|
|
|
|
# ~/.cache/vimfiles/repos
|
|
|
|
|
vimrcConfig.packages.myVimPackage = with vimPlugins; { start = [ ]; };
|
|
|
|
|
};
|
2021-02-22 21:28:39 +00:00
|
|
|
|
spacevimdir = runCommand "SpaceVim.d" { } ''
|
|
|
|
|
mkdir -p $out
|
|
|
|
|
cp ${format.generate "init.toml" spacevim_config} $out/init.toml
|
|
|
|
|
'';
|
2021-07-04 02:40:35 +00:00
|
|
|
|
in
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-12-09 12:39:15 +00:00
|
|
|
|
pname = "spacevim";
|
2021-12-21 02:18:32 +00:00
|
|
|
|
version = "1.8.0";
|
2020-12-09 12:39:15 +00:00
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "SpaceVim";
|
|
|
|
|
repo = "SpaceVim";
|
|
|
|
|
rev = "v${version}";
|
2021-12-21 02:18:32 +00:00
|
|
|
|
sha256 = "sha256:11snnh5q47nqhzjb9qya6hpnmlzc060958whqvqrh4hc7gnlnqp8";
|
2020-12-09 12:39:15 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-07-04 02:40:35 +00:00
|
|
|
|
nativeBuildInputs = [ makeWrapper vim-customized ];
|
2020-12-09 12:39:15 +00:00
|
|
|
|
buildInputs = [ vim-customized ];
|
|
|
|
|
|
|
|
|
|
buildPhase = ''
|
2021-02-22 21:28:39 +00:00
|
|
|
|
runHook preBuild
|
2020-12-09 12:39:15 +00:00
|
|
|
|
# generate the helptags
|
|
|
|
|
vim -u NONE -c "helptags $(pwd)/doc" -c q
|
2021-02-22 21:28:39 +00:00
|
|
|
|
runHook postBuild
|
2020-12-09 12:39:15 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2021-02-22 21:28:39 +00:00
|
|
|
|
patches = [
|
|
|
|
|
# Don't generate helptags at runtime into read-only $SPACEVIMDIR
|
|
|
|
|
./helptags.patch
|
|
|
|
|
];
|
2020-12-09 12:39:15 +00:00
|
|
|
|
|
|
|
|
|
installPhase = ''
|
2021-02-22 21:28:39 +00:00
|
|
|
|
runHook preInstall
|
2020-12-09 12:39:15 +00:00
|
|
|
|
mkdir -p $out/bin
|
|
|
|
|
|
|
|
|
|
cp -r $(pwd) $out/SpaceVim
|
|
|
|
|
|
|
|
|
|
# trailing slash very important for SPACEVIMDIR
|
|
|
|
|
makeWrapper "${vim-customized}/bin/vim" "$out/bin/spacevim" \
|
|
|
|
|
--add-flags "-u $out/SpaceVim/vimrc" --set SPACEVIMDIR "${spacevimdir}/" \
|
2021-01-15 22:18:51 +00:00
|
|
|
|
--prefix PATH : ${lib.makeBinPath [ fzf git ripgrep]}
|
2021-02-22 21:28:39 +00:00
|
|
|
|
runHook postInstall
|
2020-12-09 12:39:15 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
|
meta = with lib; {
|
2020-12-09 12:39:15 +00:00
|
|
|
|
description = "Modern Vim distribution";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
SpaceVim is a distribution of the Vim editor that’s inspired by spacemacs.
|
|
|
|
|
'';
|
|
|
|
|
homepage = "https://spacevim.org/";
|
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
|
maintainers = [ maintainers.fzakaria ];
|
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
};
|
|
|
|
|
}
|