guix_mirror_bot pushed a commit to branch ocaml-team
in repository guix.

commit bd6582e64cc9fba2402bf6e0b08a482aef8a21df
Author: Jason Conroy <[email protected]>
AuthorDate: Wed Feb 4 10:14:03 2026 -0500

    gnu: ocaml5: Add ocaml-cudf.
    
    * gnu/packages/ocaml5.scm (ocaml-cudf): New variable.
    
    Change-Id: I77d93a081698c63518404ae4a9626e15d0ca5f49
    Signed-off-by: Julien Lepiller <[email protected]>
---
 gnu/packages/ocaml5.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/ocaml5.scm b/gnu/packages/ocaml5.scm
index b6faff0964..2972c21651 100644
--- a/gnu/packages/ocaml5.scm
+++ b/gnu/packages/ocaml5.scm
@@ -2247,6 +2247,30 @@ management is based on OPIUM (Optimal Package 
Install/Uninstall Manager).
 quickly (even for a SAT-based solver).")
     (license license:lgpl2.1+)))
 
+(define-public ocaml-cudf
+  (package
+    (name "ocaml5-cudf")
+    (version "0.10")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://gitlab.com/irill/cudf";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1lvrmpscbk1kjv5ag5bzlzv520xk5zw2haf6q7chvz98gcm9g0hk"))))
+    (build-system dune-build-system)
+    (propagated-inputs (list ocaml-extlib))
+    (native-inputs (list ocaml-ounit2))
+    (home-page "https://www.mancoosi.org/cudf/";)
+    (synopsis "CUDF library (part of the Mancoosi tools)")
+    (description
+     "@acronym{CUDF, Common Upgradeability Description Format} is a format for
+describing upgrade scenarios in package-based software distributions.")
+    ;; With static-linking exception
+    (license license:lgpl2.1+)))
+
 ;;;
 ;;; 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

Reply via email to