Update flake.lock (#760)

* flake.lock: Update

Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/19cbff58383a4ae384dea4d1d0c823d72b49d614' (2023-11-22)
  → 'github:NixOS/nixpkgs/8cfef6986adfb599ba379ae53c9f5631ecd2fd9c' (2023-11-27)
• Updated input 'pre-commit-hooks':
    'github:cachix/pre-commit-hooks.nix/e558068cba67b23b4fbc5537173dbb43748a17e8' (2023-11-15)
  → 'github:cachix/pre-commit-hooks.nix/e5ee5c5f3844550c01d2131096c7271cec5e9b78' (2023-11-25)

* docs: Fix NixOS manpage generation

NixOS/nixpkgs#269942 changed the signature of the NixOS ManpageConverter
to require a header and a footer. As those were the only changes in
nixvim-render-docs, we now use nixos-render-docs directly.

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Miguel Gross Valle <Iggle@users.noreply.github.com>
This commit is contained in:
Gaétan Lepage 2023-11-29 10:30:27 +01:00 committed by GitHub
parent fda9e1e9a4
commit 5638a3f3a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 30 additions and 169 deletions

View file

@ -8,9 +8,7 @@
url = "https://github.com/${user}/${repo}/blob/master/${subpath}";
name = "<${repo}/${subpath}>";
};
in rec {
nixvim-render-docs = pkgs.callPackage ./nixvim-render-docs {};
in {
man-docs = let
eval = pkgs.lib.evalModules {
inherit modules;
@ -38,13 +36,16 @@ in rec {
};
in
pkgs.runCommand "nixvim-configuration-reference-manpage" {
nativeBuildInputs = with pkgs; [installShellFiles nixvim-render-docs];
nativeBuildInputs = with pkgs; [installShellFiles nixos-render-docs];
} ''
# Generate man-pages
mkdir -p $out/share/man/man5
nixvim-render-docs -j $NIX_BUILD_CORES options manpage \
nixos-render-docs -j $NIX_BUILD_CORES options manpage \
--revision unstable \
--header ${./nixvim-header.5} \
--footer ${./nixvim-footer.5} \
${options.optionsJSON}/share/doc/nixos/options.json \
$out/share/man/man5/nixvim.5
compressManPages $out
'';
}