Skip to content

Commit 83d5a72

Browse files
committed
fix and update alectryon
Signed-off-by: Ali Caglayan <[email protected]>
1 parent 4116efc commit 83d5a72

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ jobs:
184184
coq_version: ${{ env.coq-version-supported }}
185185
ocaml_version: ${{ env.ocaml-version }}
186186
custom_script: |
187-
opam install -y coq-serapi
187+
opam install -y coq-lsp
188188
sudo apt-get -o Acquire::Retries=30 update -q
189189
sudo apt-get -o Acquire::Retries=30 install python3-pip python3-venv autoconf -y --allow-unauthenticated
190190
startGroup "Workaround permission issue" # https://github.com/coq-community/docker-coq-action#permissions

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
url = https://github.com/JasonGross/coq-scripts.git
44
[submodule "etc/alectryon"]
55
path = etc/alectryon
6-
url = https://github.com/JasonGross/alectryon.git
6+
url = https://github.com/cpitclaudel/alectryon.git

Makefile.coq.local

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ alectryon-html/index.html alectryon-html/toc.html alectryon-html/coqdoc.css : al
172172

173173
alectryon-html-done.timestamp: $(ALL_VOFILES) $(ALL_VFILES)
174174
@ mkdir -p alectryon-html
175-
$(TIMER) $(ALECTRYON) --frontend coq+rst --backend webpage --sertop-arg=--no_prelude --sertop-arg=--indices-matter $(COQLIBS_NOML) --output-directory alectryon-html --cache-directory alectryon-cache --long-line-threshold=99999 $(ALECTRYON_EXTRAFLAGS) $(ALL_VFILES)
175+
$(TIMER) $(ALECTRYON) --frontend coq+rst --backend webpage --coq-driver coqlsp --output-directory alectryon-html --cache-directory alectryon-cache --long-line-threshold=99999 $(ALECTRYON_EXTRAFLAGS) $(ALL_VFILES)
176176
touch alectryon-html-done.timestamp
177177

178178
alectryon-html:

flake.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@
3131
ocamlPackages.ocaml
3232
ocamlPackages.findlib
3333
pkgs.pkg-config
34+
(pkgs.python3.withPackages (ps: [
35+
ps.pygments
36+
ps.dominate
37+
ps.beautifulsoup4
38+
ps.docutils
39+
]))
3440
] ++ extraPackages ++ [ coq ]
3541
++ pkgs.lib.optionals (rocqPackages != null) [ rocqPackages.rocq-core ];
3642
};

0 commit comments

Comments
 (0)