Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Bazel 2.0.0 #4352

Merged
merged 4 commits into from
Feb 7, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Pin sphinx 1.8.3 for Bazel
  • Loading branch information
aherrmann committed Feb 7, 2020
commit ef0f58621fcc98f67f66ce4a0c8ea4c834ddf918
9 changes: 8 additions & 1 deletion nix/bazel.nix
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,14 @@ let shared = rec {

sass = pkgs.sass;

sphinx183 = pkgs.python3Packages.sphinx;
# sphinx 2.2.2 causes build failures of //docs:pdf-docs.
sphinx183 = pkgs.python3Packages.sphinx.overridePythonAttrs (attrs: rec {
version = "1.8.3";
src = attrs.src.override {
inherit version;
sha256 = "c4cb17ba44acffae3d3209646b6baec1e215cad3065e852c68cc569d4df1b9f8";
};
});

# Custom combination of latex packages for our latex needs
texlive = pkgs.texlive.combine {
Expand Down