Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{
|
|
buildNpmPackage,
|
|
callPackage,
|
|
fetchFromGitLab,
|
|
lib,
|
|
nix-update-script,
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "antora";
|
|
version = "3.1.9";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "antora";
|
|
repo = "antora";
|
|
tag = "v${version}";
|
|
hash = "sha256-hkavYC2LO8NRIRwHNWIJLRDkVnhAB4Di3IqL8uGt+U8=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-ngreuitwUcIDVF6vW7fZA1OaVxr9fv7s0IjCErXlcxg=";
|
|
|
|
# This is to stop tests from being ran, as some of them fail due to trying to query remote repositories
|
|
postPatch = ''
|
|
substituteInPlace package.json --replace \
|
|
'"_mocha"' '""'
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/bin
|
|
ln -s $out/lib/node_modules/antora-build/packages/cli/bin/antora $out/bin/antora
|
|
'';
|
|
|
|
passthru = {
|
|
tests.run = callPackage ./test { };
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Modular documentation site generator. Designed for users of Asciidoctor";
|
|
homepage = "https://antora.org";
|
|
license = licenses.mpl20;
|
|
mainProgram = "antora";
|
|
|
|
maintainers = with maintainers; [
|
|
ehllie
|
|
naho
|
|
];
|
|
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|