gnu: ocaml-biniou: Update to 1.2.1.
* gnu/packages/ocaml.scm (ocaml-biniou): Update to 1.2.1.
This commit is contained in:
parent
b2f810fe93
commit
8dfe8fee54
|
@ -3540,19 +3540,29 @@ than the first one.")
|
||||||
(define-public ocaml-biniou
|
(define-public ocaml-biniou
|
||||||
(package
|
(package
|
||||||
(name "ocaml-biniou")
|
(name "ocaml-biniou")
|
||||||
(version "1.2.0")
|
(version "1.2.1")
|
||||||
(home-page "https://github.com/mjambon/biniou")
|
(home-page "https://github.com/mjambon/biniou")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url (string-append home-page ".git"))
|
(url (string-append home-page ".git"))
|
||||||
(commit (string-append "v" version))))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0mjpgwyfq2b2izjw0flmlpvdjgqpq8shs89hxj1np2r50csr8dcb"))))
|
"0x2kiy809n1j0yf32l7hj102y628jp5jdrkbi3z7ld8jq04h1790"))))
|
||||||
(build-system dune-build-system)
|
(build-system dune-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'build 'make-writable
|
||||||
|
(lambda _
|
||||||
|
(for-each
|
||||||
|
(lambda (file)
|
||||||
|
(chmod file #o644))
|
||||||
|
(find-files "." "."))
|
||||||
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("ocaml-easy-format" ,ocaml-easy-format)))
|
`(("ocaml-easy-format" ,ocaml-easy-format)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Loading…
Reference in New Issue