nixpkgs/pkgs/applications/editors/spacevim/default.nix

66 lines
1.9 KiB
Nix
Raw Normal View History

2021-02-14 03:32:11 +00:00
{ ripgrep, git, fzf, makeWrapper, vim_configurable, vimPlugins, fetchFromGitHub
2021-02-20 09:16:45 +00:00
, lib, stdenv, formats, runCommand, spacevim_config ? import ./init.nix }:
2021-02-14 03:32:11 +00:00
let
format = formats.toml {};
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-20 09:16:45 +00:00
spacevimdir = runCommand "SpaceVim.d" { } ''
mkdir -p $out
cp ${format.generate "init.toml" spacevim_config} $out/init.toml
'';
2021-02-14 03:32:11 +00:00
in stdenv.mkDerivation rec {
pname = "spacevim";
2021-01-19 16:49:17 +00:00
version = "1.6.0";
src = fetchFromGitHub {
owner = "SpaceVim";
repo = "SpaceVim";
rev = "v${version}";
2021-01-19 16:49:17 +00:00
sha256 = "sha256-QQdtjEdbuzmf0Rw+u2ZltLihnJt8LqkfTrLDWLAnCLE=";
};
nativeBuildInputs = [ makeWrapper vim-customized];
buildInputs = [ vim-customized ];
buildPhase = ''
2021-02-20 17:08:41 +00:00
runHook preBuild
# generate the helptags
vim -u NONE -c "helptags $(pwd)/doc" -c q
2021-02-20 17:08:41 +00:00
runHook postBuild
'';
2021-02-20 17:08:41 +00:00
patches = [
# Don't generate helptags at runtime into read-only $SPACEVIMDIR
./helptags.patch
];
installPhase = ''
2021-02-20 17:08:41 +00:00
runHook preInstall
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}/" \
--prefix PATH : ${lib.makeBinPath [ fzf git ripgrep]}
2021-02-20 17:08:41 +00:00
runHook postInstall
'';
meta = with lib; {
description = "Modern Vim distribution";
longDescription = ''
SpaceVim is a distribution of the Vim editor thats inspired by spacemacs.
'';
homepage = "https://spacevim.org/";
license = licenses.gpl3Plus;
maintainers = [ maintainers.fzakaria ];
platforms = platforms.all;
};
}