mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: ocaml-fmt: Update to 0.9.0.
* gnu/packages/ocaml.scm (ocaml-fmt): Update to 0.9.0. (ocaml4.07-fmt): New variable.
This commit is contained in:
parent
c618f4a9cc
commit
426faa76d1
1 changed files with 17 additions and 2 deletions
|
@ -2222,14 +2222,14 @@ (define-public ocaml-cmdliner
|
|||
(define-public ocaml-fmt
|
||||
(package
|
||||
(name "ocaml-fmt")
|
||||
(version "0.8.9")
|
||||
(version "0.9.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://erratique.ch/software/fmt/releases/fmt-"
|
||||
version ".tbz"))
|
||||
(sha256 (base32
|
||||
"0gkkkj4x678vxdda4xaw2dd44qjacavsvn5nx8gydfwah6pjbkxk"))))
|
||||
"0q8j2in2473xh7k4hfgnppv9qy77f2ih89yp6yhpbp92ba021yzi"))))
|
||||
(build-system ocaml-build-system)
|
||||
(native-inputs
|
||||
`(("ocamlbuild" ,ocamlbuild)
|
||||
|
@ -2245,12 +2245,27 @@ (define-public ocaml-fmt
|
|||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure))))
|
||||
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-fmt))))
|
||||
(home-page "https://erratique.ch/software/fmt")
|
||||
(synopsis "OCaml Format pretty-printer combinators")
|
||||
(description "Fmt exposes combinators to devise Format pretty-printing
|
||||
functions.")
|
||||
(license license:isc)))
|
||||
|
||||
(define-public ocaml4.07-fmt
|
||||
(package-with-ocaml4.07
|
||||
(package
|
||||
(inherit ocaml-fmt)
|
||||
(version "0.8.9")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://erratique.ch/software/fmt/releases/fmt-"
|
||||
version ".tbz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0gkkkj4x678vxdda4xaw2dd44qjacavsvn5nx8gydfwah6pjbkxk"))))
|
||||
(properties '()))))
|
||||
|
||||
(define-public ocaml-astring
|
||||
(package
|
||||
(name "ocaml-astring")
|
||||
|
|
Loading…
Reference in a new issue