Skip to content

Commit

Permalink
Update nixpkgs and document upper bound on ANTLR compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zimmi48 committed Jun 30, 2023
1 parent 12fe911 commit 54e753e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ stdenv.mkDerivation rec {

buildInputs = [
hostname
python3
python311
# coq-makefile timing tools
time
dune_3
Expand All @@ -54,10 +54,10 @@ stdenv.mkDerivation rec {
]
++ optionals buildDoc [
# Sphinx doc dependencies
pkg-config (python3.withPackages
pkg-config (python311.withPackages
(ps: [ ps.sphinx ps.sphinx_rtd_theme ps.pexpect ps.beautifulsoup4
ps.antlr4-python3-runtime ps.sphinxcontrib-bibtex ]))
antlr4
(ps.antlr4-python3-runtime.override {antlr4 = pkgs.antlr4_9;}) ps.sphinxcontrib-bibtex ]))
antlr4_9
ocamlPackages.odoc
]
++ optionals doInstallCheck [
Expand Down
4 changes: 2 additions & 2 deletions dev/nixpkgs.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import (fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/5b9b93b9be4234aaf9cd53e3247a927225095514.tar.gz";
sha256 = "0wz4xr43rg1p2sqgi6zg3s02jfaxhl15slz747fh6h825i4cz9bb";
url = "https://github.com/NixOS/nixpkgs/archive/a565059a348422af5af9026b5174dc5c0dcefdae.tar.gz";
sha256 = "1spgz981x8p2ix9nsrkfw7a4n5wx35mf4v0bsjqfpjy360jb5rix";
})
2 changes: 1 addition & 1 deletion doc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ reference manual requires Python 3, and the following Python packages:
- sphinx >= 4.5.0
- sphinx_rtd_theme >= 1.0.0
- beautifulsoup4 >= 4.0.6
- antlr4-python3-runtime >= 4.7.1
- antlr4-python3-runtime >= 4.7.1 & <= 4.9.3
- pexpect >= 4.2.1
- sphinxcontrib-bibtex >= 0.4.2

Expand Down

0 comments on commit 54e753e

Please sign in to comment.