Skip to content

Commit

Permalink
Merge PR #13015: Propagate zarith dependency.
Browse files Browse the repository at this point in the history
Reviewed-by: vbgl
  • Loading branch information
vbgl committed Sep 16, 2020
2 parents 7edb2d3 + 4093277 commit 95f7839
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions default.nix
Expand Up @@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
hostname
python3 time # coq-makefile timing tools
]
++ (with ocamlPackages; [ ocaml findlib num zarith ])
++ (with ocamlPackages; [ ocaml findlib ])
++ optionals buildIde [
ocamlPackages.lablgtk3-sourceview3
glib gnome3.defaultIconTheme wrapGAppsHook
Expand Down Expand Up @@ -71,9 +71,8 @@ stdenv.mkDerivation rec {

# Since #12604, ocamlfind looks for num when building plugins
# This follows a similar change in the nixpkgs repo (cf. NixOS/nixpkgs#94230)
propagatedBuildInputs = [
ocamlPackages.num
];
# Same for zarith which is needed since its introduction as a dependency of Coq
propagatedBuildInputs = with ocamlPackages; [ num zarith ];

src =
if shell then null
Expand Down

0 comments on commit 95f7839

Please sign in to comment.