manual: fix calls, to use ndg from <nixpkgs> instead
Some checks are pending
Set up binary cache / cachix (default) (push) Waiting to run
Set up binary cache / cachix (maximal) (push) Waiting to run
Set up binary cache / cachix (nix) (push) Waiting to run
Treewide Checks / Validate flake (push) Waiting to run
Treewide Checks / Check formatting (push) Waiting to run
Treewide Checks / Check source tree for typos (push) Waiting to run
Treewide Checks / Validate documentation builds (push) Waiting to run
Treewide Checks / Validate documentation builds-1 (push) Waiting to run
Treewide Checks / Validate documentation builds-2 (push) Waiting to run
Treewide Checks / Validate documentation builds-3 (push) Waiting to run
Treewide Checks / Validate hyperlinks in documentation sources (push) Waiting to run
Treewide Checks / Validate Editorconfig conformance (push) Waiting to run
Build and deploy documentation / Check latest commit (push) Waiting to run
Build and deploy documentation / publish (push) Blocked by required conditions

This commit is contained in:
Snoweuph 2026-06-20 09:01:30 +02:00 committed by raf
commit d390177b7f
4 changed files with 40 additions and 18 deletions

View file

@ -92,7 +92,6 @@
# Generate the HTML manual pages
html = pkgs.callPackage ./manual.nix {
inherit inputs;
inherit (nvimModuleDocs) optionsJSON;
};
in {

View file

@ -1,9 +1,9 @@
{
inputs,
path,
stdenvNoCC,
optionsJSON,
jaq,
ndg,
gnused,
} @ args: let
manual-release = args.release or "unstable";
@ -14,10 +14,7 @@ in
src = ./manual;
nativeBuildInputs = [
(inputs.ndg.packages.${stdenvNoCC.system}.ndg.overrideAttrs {
# FIXME: the tests take too long to build
doCheck = false;
})
ndg
jaq
gnused
];