[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#64209] [PATCH 11/14] gnu: Add ocaml-pp.
From: |
Benjamin |
Subject: |
[bug#64209] [PATCH 11/14] gnu: Add ocaml-pp. |
Date: |
Wed, 21 Jun 2023 17:48:25 +0200 |
* gnu/packages/ocaml.scm (ocaml-pp): New variable.
---
gnu/packages/ocaml.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 30eb7e2209..ffc7a9e5e9 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -2015,6 +2015,37 @@ (define-public ocaml5.0-csexp
(propagated-inputs
`(("ocaml-result" ,ocaml5.0-result)))))
+(define-public ocaml-pp
+ (package
+ (name "ocaml-pp")
+ (version "1.1.2")
+ (home-page "https://github.com/ocaml-dune/pp")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url home-page)
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0w7gxa85ffbd6jgs6ziarq69yi423f0qkpk05r3abh6lg8smw8pg"))))
+ (build-system dune-build-system)
+ (native-inputs (list ocaml-ppx-expect))
+ (synopsis "Pretty-printing library")
+ (description
+ "This library provides a lean alternative to the Format [1] module of the
OCaml
+standard library. It aims to make it easy for users to do the right thing. If
+you have tried Format before but find its API complicated and difficult to use,
+then Pp might be a good choice for you. Pp uses the same concepts of boxes and
+break hints, and the final rendering is done to formatter from the Format
+module. However it defines its own algebra which some might find easier to
work
+with and reason about. No previous knowledge is required to start using this
+library, however the various guides for the Format module such as this one [2]
+should be applicable to Pp as well. [1]:
+https://caml.inria.fr/pub/docs/manual-ocaml/libref/Format.html [2]:
+http://caml.inria.fr/resources/doc/guides/format.en.html")
+ (license license:expat)))
+
(define-public ocaml-migrate-parsetree
(package
(name "ocaml-migrate-parsetree")
--
2.40.1
- [bug#64209] [PATCH 00/14] Add ocaml-lsp-server and its dependencies, Benjamin, 2023/06/21
- [bug#64209] [PATCH 02/14] gnu: Add ocaml-dune-rpc., Benjamin, 2023/06/21
- [bug#64209] [PATCH 01/14] gnu: Fix ocaml-dune-build-info, Benjamin, 2023/06/21
- [bug#64209] [PATCH 03/14] gnu: Add ocaml-chrome-trace., Benjamin, 2023/06/21
- [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 <=
- [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, 2023/06/21