guix-devel
[Top][All Lists]
Advanced

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

[PATCH 90/96] gnu: Add ocaml-easy-format


From: Julien Lepiller
Subject: [PATCH 90/96] gnu: Add ocaml-easy-format
Date: Tue, 3 Jan 2017 20:12:11 +0100

* gnu/packages/ocaml.scm (ocaml-easy-format): New variable.
---
 gnu/packages/ocaml.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 5d7e994f7..40e285820 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -2755,3 +2755,23 @@ manipulate JSON.")
     (synopsis "RFC3986 URI/URL parsing library")
     (description "RFC3986 URI/URL parsing library.")
     (license license:isc)))
+
+(define-public ocaml-easy-format
+  (package
+    (name "ocaml-easy-format")
+    (version "1.2.0")
+    (home-page "https://github.com/mjambon/easy-format";)
+    (source
+      (origin
+        (method url-fetch)
+        (uri (string-append home-page "/archive/v" version ".tar.gz"))
+        (sha256 (base32
+                  "1zcz682y9figa84k7lgdjcab5qbzk3yy14ygfqp2dhhrvjygm252"))))
+    (build-system ocaml-build-system)
+    (arguments `(#:phases (modify-phases %standard-phases (delete 'configure))
+                 #:tests? #f))
+    (synopsis "High-level and functional interface to the Format module of the
+OCaml standard library")
+    (description "High-level and functional interface to the Format module of
+the OCaml standard library.")
+    (license license:bsd-3)))
-- 
2.11.0




reply via email to

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