4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
56 lines
1.7 KiB
Nix
56 lines
1.7 KiB
Nix
{ ripgrep, gitAndTools, fzf, makeWrapper, vim_configurable, vimPlugins, fetchFromGitHub, writeTextDir
|
||
, lib, stdenv, runCommandNoCC, remarshal, formats, spacevim_config ? import ./init.nix }:
|
||
with stdenv;
|
||
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 = [ ]; };
|
||
};
|
||
spacevimdir = format.generate "init.toml" spacevim_config;
|
||
in mkDerivation rec {
|
||
pname = "spacevim";
|
||
version = "1.5.0";
|
||
src = fetchFromGitHub {
|
||
owner = "SpaceVim";
|
||
repo = "SpaceVim";
|
||
rev = "v${version}";
|
||
sha256 = "1xw4l262x7wzs1m65bddwqf3qx4254ykddsw3c3p844pb3mzqhh7";
|
||
};
|
||
|
||
nativeBuildInputs = [ makeWrapper vim-customized];
|
||
buildInputs = [ vim-customized ];
|
||
|
||
buildPhase = ''
|
||
# generate the helptags
|
||
vim -u NONE -c "helptags $(pwd)/doc" -c q
|
||
'';
|
||
|
||
patches = [ ./helptags.patch ];
|
||
|
||
installPhase = ''
|
||
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 gitAndTools.git ripgrep]}
|
||
'';
|
||
|
||
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;
|
||
};
|
||
}
|