summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorJulien Lepiller <julien@lepiller.eu>2019-09-04 23:06:51 +0200
committerJulien Lepiller <julien@lepiller.eu>2019-09-04 23:08:49 +0200
commitce502774b4eba7aaa4c1d5eb07c913d6f06ff0dc (patch)
tree85766d766491a4df60c5e9d52f0abff4c6c3a0ad /gnu/packages
parente57dd20118d3210de0ce9e407f41bf3a0be1dee3 (diff)
gnu: ocaml-easy-format: Update to 1.3.2.
* gnu/packages/ocaml.scm (ocaml-easy-format): Update to 1.3.2.
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/ocaml.scm17
1 files changed, 13 insertions, 4 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 67a5f01c7a9..146fb63d5ea 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -2753,19 +2753,28 @@ JSON.")
2753(define-public ocaml-easy-format 2753(define-public ocaml-easy-format
2754 (package 2754 (package
2755 (name "ocaml-easy-format") 2755 (name "ocaml-easy-format")
2756 (version "1.3.1") 2756 (version "1.3.2")
2757 (source (origin 2757 (source (origin
2758 (method git-fetch) 2758 (method git-fetch)
2759 (uri (git-reference 2759 (uri (git-reference
2760 (url "https://github.com/mjambon/easy-format") 2760 (url "https://github.com/mjambon/easy-format")
2761 (commit (string-append "v" version)))) 2761 (commit version)))
2762 (file-name (git-file-name name version)) 2762 (file-name (git-file-name name version))
2763 (sha256 2763 (sha256
2764 (base32 2764 (base32
2765 "0jfncci15b8sf1y72yrxfjlsmhs9aavcd14vwz4d7kj8k9w9c4qk")))) 2765 "1fc95q2ypck6m6rv3kiawwilh5ac93v2hcp823mj608d5kj79xkb"))))
2766 (build-system dune-build-system) 2766 (build-system dune-build-system)
2767 (arguments 2767 (arguments
2768 `(#:jbuild? #t)) 2768 `(#:jbuild? #t
2769 #:phases
2770 (modify-phases %standard-phases
2771 (add-before 'build 'make-writable
2772 (lambda _
2773 (for-each
2774 (lambda (file)
2775 (chmod file #o644))
2776 (find-files "." "."))
2777 #t)))))
2769 (home-page "https://github.com/mjambon/easy-format") 2778 (home-page "https://github.com/mjambon/easy-format")
2770 (synopsis "Interface to the Format module") 2779 (synopsis "Interface to the Format module")
2771 (description "Easy-format is a high-level and functional interface to the 2780 (description "Easy-format is a high-level and functional interface to the