guix_mirror_bot pushed a commit to branch ocaml-team
in repository guix.
commit 1e7652158040864407f97f31168e2ff13757f62b
Author: Jason Conroy <[email protected]>
AuthorDate: Wed Feb 4 10:49:54 2026 -0500
gnu: ocaml5: Add ocaml-opam-solver.
* gnu/packages/ocaml5.scm (ocaml-opam-solver): New variable.
Change-Id: If36b4d2cf159d77576add3b7d280af2a8f6fb927
Signed-off-by: Julien Lepiller <[email protected]>
---
gnu/packages/ocaml5.scm | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/gnu/packages/ocaml5.scm b/gnu/packages/ocaml5.scm
index 6188340852..ed7b23e527 100644
--- a/gnu/packages/ocaml5.scm
+++ b/gnu/packages/ocaml5.scm
@@ -2604,6 +2604,19 @@ OPAM.")))
(inputs (list bubblewrap ocaml-spdx-licenses))
(propagated-inputs (list ocaml-opam-repository))))
+(define ocaml-opam-solver
+ (package
+ (inherit ocaml-opam-core)
+ (name "ocaml5-opam-solver")
+ (inputs '())
+ (propagated-inputs (list ocaml-opam-format ocaml-mccs
+ ocaml-opam-0install-cudf ocaml-dose3))
+ (arguments
+ `(#:package "opam-solver"
+ ;; tests are run with the opam package
+ #:tests? #f
+ #:phases %standard-phases))))
+
;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar