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

commit e0d9e77fdf3b5d4ac9198b835279ec404614f2e3
Author: Jason Conroy <[email protected]>
AuthorDate: Thu Jan 15 13:31:14 2026 -0500

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

diff --git a/gnu/packages/ocaml5.scm b/gnu/packages/ocaml5.scm
index 0205b552a3..85a43f4310 100644
--- a/gnu/packages/ocaml5.scm
+++ b/gnu/packages/ocaml5.scm
@@ -1853,6 +1853,28 @@ packages.")
 hash functions from type exrpessions and definitions.")
     (license license:expat)))
 
+(define-public ocaml-ppx-assert
+  (package
+    (name "ocaml5-ppx-assert")
+    (version "0.17.0")
+    (source
+     (janestreet-git-origin "ppx_assert" version
+      "1h0gynscd3d9vdx1rf6cf281cn8sw3gxp6z5vl4smypsa5sb1p53"))
+    (build-system dune-build-system)
+    (propagated-inputs (list ocaml-base
+                             ocaml-ppx-cold
+                             ocaml-ppx-compare
+                             ocaml-ppx-here
+                             ocaml-ppx-sexp-conv
+                             ocaml-ppxlib))
+    (properties `((upstream-name . "ppx_assert")))
+    (home-page "https://github.com/janestreet/ppx_assert";)
+    (synopsis
+     "Assert-like extension nodes that raise useful errors on failure")
+    (description "This package contains assert-like extension nodes that raise
+useful errors on failure.")
+    (license license:expat)))
+
 ;;;
 ;;; 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