feat: use nixvim for manpager definition

This commit is contained in:
oddlama 2023-11-05 19:31:15 +01:00
parent cc04e10405
commit c037780743
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
8 changed files with 78 additions and 141 deletions

View file

@ -8,6 +8,14 @@
kanidm-secret-manipulator = prev.callPackage ./kanidm-secret-manipulator.nix {};
segoe-ui-ttf = prev.callPackage ./segoe-ui-ttf.nix {};
zsh-histdb-skim = prev.callPackage ./zsh-skim-histdb.nix {};
neovim-clean = prev.neovim-unwrapped.overrideAttrs (_neovimFinal: neovimPrev: {
nativeBuildInputs = (neovimPrev.nativeBuildInputs or []) ++ [prev.makeWrapper];
postInstall =
(neovimPrev.postInstall or "")
+ ''
wrapProgram $out/bin/nvim --add-flags "--clean"
'';
});
kanidm = prev.kanidm.overrideAttrs (_finalAttrs: _previousAttrs: {
patches = [