nixpkgs/pkgs/by-name/an/antora/package.nix
NAHO 4ce5400335
antora: add naho as maintainer
To simplify maintenance of the antora-ui-default and
antora-lunr-extension packages, naho should also be added as a
maintainer for the core Antora package.

Link: https://github.com/NixOS/nixpkgs/pull/332341
2024-10-31 09:11:42 +01:00

52 lines
1.1 KiB
Nix

{
buildNpmPackage,
callPackage,
fetchFromGitLab,
lib,
nix-update-script,
}:
buildNpmPackage rec {
pname = "antora";
version = "3.1.9";
src = fetchFromGitLab {
owner = pname;
repo = pname;
rev = "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;
};
}