guix-commits
[Top][All Lists]
Advanced

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

10/10: gnu: ocaml-easy-format: Update to 1.3.2.


From: guix-commits
Subject: 10/10: gnu: ocaml-easy-format: Update to 1.3.2.
Date: Wed, 4 Sep 2019 17:09:22 -0400 (EDT)

roptat pushed a commit to branch master
in repository guix.

commit ce502774b4eba7aaa4c1d5eb07c913d6f06ff0dc
Author: Julien Lepiller <address@hidden>
Date:   Wed Sep 4 23:06:51 2019 +0200

    gnu: ocaml-easy-format: Update to 1.3.2.
    
    * gnu/packages/ocaml.scm (ocaml-easy-format): Update to 1.3.2.
---
 gnu/packages/ocaml.scm | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 67a5f01..146fb63 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -2753,19 +2753,28 @@ JSON.")
 (define-public ocaml-easy-format
   (package
     (name "ocaml-easy-format")
-    (version "1.3.1")
+    (version "1.3.2")
     (source (origin
               (method git-fetch)
               (uri (git-reference
                      (url "https://github.com/mjambon/easy-format";)
-                     (commit (string-append "v" version))))
+                     (commit version)))
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0jfncci15b8sf1y72yrxfjlsmhs9aavcd14vwz4d7kj8k9w9c4qk"))))
+                "1fc95q2ypck6m6rv3kiawwilh5ac93v2hcp823mj608d5kj79xkb"))))
     (build-system dune-build-system)
     (arguments
-     `(#:jbuild? #t))
+     `(#:jbuild? #t
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'build 'make-writable
+           (lambda _
+             (for-each
+               (lambda (file)
+                 (chmod file #o644))
+               (find-files "." "."))
+             #t)))))
     (home-page "https://github.com/mjambon/easy-format";)
     (synopsis "Interface to the Format module")
     (description "Easy-format is a high-level and functional interface to the



reply via email to

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