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

commit 0b394d3df9f948a1a0b0b4ed656b2d48133fbf82
Author: Jason Conroy <[email protected]>
AuthorDate: Thu Jan 15 13:41:20 2026 -0500

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

diff --git a/gnu/packages/ocaml5.scm b/gnu/packages/ocaml5.scm
index 3de7999191..64ee5309ed 100644
--- a/gnu/packages/ocaml5.scm
+++ b/gnu/packages/ocaml5.scm
@@ -1940,6 +1940,32 @@ Street.  Future updates may not be backward-compatible, 
and we do not
 recommend using this package directly.")
     (license license:expat)))
 
+(define-public ocaml-ppx-base
+  (package
+    (name "ocaml5-ppx-base")
+    (version "0.17.0")
+    (source
+     (janestreet-git-origin "ppx_base" version
+      "14lvhy842fjjm2qwqhxkqig4mc5s439rbkd87mlys86byzrdrkpy"))
+    (build-system dune-build-system)
+    (propagated-inputs (list ocaml-ppx-compare
+                             ocaml-ppx-cold
+                             ocaml-ppx-enumerate
+                             ocaml-ppx-globalize
+                             ocaml-ppx-hash
+                             ocaml-ppx-js-style
+                             ocaml-ppx-sexp-conv
+                             ocaml-ppxlib))
+    (properties `((upstream-name . "ppx_base")))
+    (home-page "https://github.com/janestreet/ppx_base";)
+    (synopsis "Base set of ppx rewriters")
+    (description
+     "Ppx_base is the set of ppx rewriters used for Base.
+
+Note that Base doesn't need ppx to build, it is only used as a
+verification tool.")
+    (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