guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

21/45: gnu: Add ocaml-sexp-pretty.


From: guix-commits
Subject: 21/45: gnu: Add ocaml-sexp-pretty.
Date: Fri, 17 Feb 2023 10:49:33 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit bd15c8fc3a4f0d3601f229d686ac8d75068b2725
Author: raingloom <raingloom@riseup.net>
AuthorDate: Wed Feb 15 23:00:10 2023 +0100

    gnu: Add ocaml-sexp-pretty.
    
    * gnu/packages/ocaml.scm (ocaml-sexp-pretty): New variable.
    
    Signed-off-by: Christopher Baines <mail@cbaines.net>
---
 gnu/packages/ocaml.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 83954cfd86..82cada5a46 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -6148,6 +6148,29 @@ functionality for parsing and pretty-printing 
s-expressions.")
                          
"0ksx62zsxhz8xmdrsn41n2hbc2qbyh3bxxc6946xisvgwh42h3q3"))
      (properties '()))))
 
+(define-public ocaml-sexp-pretty
+  (package
+    (name "ocaml-sexp-pretty")
+    (version "0.15.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/janestreet/sexp_pretty";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "08z9jpvgag5f029ns0a06lcdymg00vwi232xsy1rdv82zvc0x4ah"))))
+    (build-system dune-build-system)
+    (propagated-inputs (list ocaml-base ocaml-ppx-base ocaml-sexplib ocaml-re))
+    (properties `((upstream-name . "sexp_pretty")))
+    (home-page "https://github.com/janestreet/sexp_pretty";)
+    (synopsis "S-expression pretty-printer")
+    (description
+     "Library for pretty-printing s-expressions, using better indentation
+rules than the default pretty printer in Sexplib.")
+    (license license:expat)))
+
 (define-public ocaml-base
   (package
     (name "ocaml-base")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]