aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/default.nix b/default.nix
index ef969acd31..e383d214e0 100644
--- a/default.nix
+++ b/default.nix
@@ -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
@@ -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