571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
79 lines
1.9 KiB
Nix
79 lines
1.9 KiB
Nix
{ ripgrep
|
||
, git
|
||
, fzf
|
||
, makeWrapper
|
||
, vim-full
|
||
, vimPlugins
|
||
, fetchFromGitHub
|
||
, lib
|
||
, stdenv
|
||
, formats
|
||
, runCommand
|
||
, spacevim_config ? import ./init.nix
|
||
}:
|
||
|
||
let
|
||
format = formats.toml { };
|
||
vim-customized = vim-full.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 = [ ]; };
|
||
};
|
||
spacevimdir = runCommand "SpaceVim.d" { } ''
|
||
mkdir -p $out
|
||
cp ${format.generate "init.toml" spacevim_config} $out/init.toml
|
||
'';
|
||
in
|
||
stdenv.mkDerivation rec {
|
||
pname = "spacevim";
|
||
version = "1.8.0";
|
||
src = fetchFromGitHub {
|
||
owner = "SpaceVim";
|
||
repo = "SpaceVim";
|
||
rev = "v${version}";
|
||
sha256 = "sha256:11snnh5q47nqhzjb9qya6hpnmlzc060958whqvqrh4hc7gnlnqp8";
|
||
};
|
||
|
||
nativeBuildInputs = [ makeWrapper vim-customized ];
|
||
buildInputs = [ vim-customized ];
|
||
|
||
buildPhase = ''
|
||
runHook preBuild
|
||
# generate the helptags
|
||
vim -u NONE -c "helptags $(pwd)/doc" -c q
|
||
runHook postBuild
|
||
'';
|
||
|
||
patches = [
|
||
# Don't generate helptags at runtime into read-only $SPACEVIMDIR
|
||
./helptags.patch
|
||
];
|
||
|
||
installPhase = ''
|
||
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]}
|
||
runHook postInstall
|
||
'';
|
||
|
||
meta = with lib; {
|
||
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;
|
||
mainProgram = "spacevim";
|
||
};
|
||
}
|