[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#64209] [PATCH 12/14] gnu: Add ocaml-ppx-yojson-conv-lib.
From: |
Benjamin |
Subject: |
[bug#64209] [PATCH 12/14] gnu: Add ocaml-ppx-yojson-conv-lib. |
Date: |
Wed, 21 Jun 2023 17:48:26 +0200 |
* gnu/packages/ocaml.scm (ocaml-ppx-yojson-conv-lib): New variable.
---
gnu/packages/ocaml.scm | 23 ++++++++++++++++++++++-
1 file changed, 22 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index ffc7a9e5e9..794a7a96d3 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -6170,7 +6170,28 @@ (define-public ocaml-yojson
yojson package. The program @code{atdgen} can be used to derive OCaml-JSON
serializers and deserializers from type definitions.")
(license license:bsd-3)))
-
+
+(define-public ocaml-ppx-yojson-conv-lib
+ (package
+ (name "ocaml-ppx-yojson-conv-lib")
+ (version "0.15.0")
+ (home-page "https://github.com/janestreet/ppx_yojson_conv_lib")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url home-page)
+ (commit (string-append "v" version))))
+ (sha256
+ (base32
+ "0slc5cwy60vx8gskmn20hmndjncpp5zs80a9wm7hxv8yl003i60y"))))
+ (build-system dune-build-system)
+ (propagated-inputs (list ocaml-yojson))
+ (properties `((upstream-name . "ppx_yojson_conv_lib")))
+ (synopsis "Runtime lib for ppx_yojson_conv")
+ (description "Part of the Jane Street's PPX rewriters collection.")
+ (license license:expat)))
+
(define-public ocaml-merlin-lib
(package
(name "ocaml-merlin-lib")
--
2.40.1
- [bug#64209] [PATCH 05/14] gnu: Add ocaml-stdune., (continued)
- [bug#64209] [PATCH 05/14] gnu: Add ocaml-stdune., Benjamin, 2023/06/21
- [bug#64209] [PATCH 09/14] gnu: Add ocamlc-loc., Benjamin, 2023/06/21
- [bug#64209] [PATCH 04/14] gnu: Add ocaml-dyn., Benjamin, 2023/06/21
- [bug#64209] [PATCH 06/14] gnu: Add ocaml-fiber., Benjamin, 2023/06/21
- [bug#64209] [PATCH 07/14] gnu: Add ocaml-xdg., Benjamin, 2023/06/21
- [bug#64209] [PATCH 11/14] gnu: Add ocaml-pp., Benjamin, 2023/06/21
- [bug#64209] [PATCH 13/14] gnu: Add ocaml-merlin-lib-4.9., Benjamin, 2023/06/21
- [bug#64209] [PATCH 10/14] gnu: Add ocamlformat-rpc-lib., Benjamin, 2023/06/21
- [bug#64209] [PATCH 14/14] gnu: Add ocaml-lsp-server., Benjamin, 2023/06/21
- [bug#64209] [PATCH 08/14] gnu: Add ocaml-ordering., Benjamin, 2023/06/21
- [bug#64209] [PATCH 12/14] gnu: Add ocaml-ppx-yojson-conv-lib.,
Benjamin <=