gnu: ocaml-timed: Update to 1.1.

* gnu/packages/ocaml.scm (ocaml-timed): Update to 1.1.
This commit is contained in:
Julien Lepiller 2022-08-13 20:51:42 +02:00
parent 893299b3ee
commit 07fecda3dd
No known key found for this signature in database
GPG key ID: 53D457B2D636EE82

View file

@ -4911,31 +4911,20 @@ (define-public ocaml-earley
(define-public ocaml-timed (define-public ocaml-timed
(package (package
(name "ocaml-timed") (name "ocaml-timed")
(version "1.0") (version "1.1")
(home-page "https://github.com/rlepigre/ocaml-timed") (home-page "https://github.com/rlepigre/ocaml-timed")
(source (origin (source (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 name "_" version)))) (commit version)))
(sha256 (sha256
(base32 (base32
"0hfxz710faxy5yk97bkfnw87r732jcxxhmjppwrbfdb6pd0wks96")) "1aqmkpjv5jk95lc2m3qyyrhw8ra7n9wj8pv3bfc83l737zv0hjn1"))
(file-name (git-file-name name version)))) (file-name (git-file-name name version))))
(build-system ocaml-build-system) (build-system dune-build-system)
(arguments (arguments
'(#:phases '(#:test-target "."))
(modify-phases %standard-phases
(delete 'configure)
(replace 'build
(lambda _
(invoke "make")))
(replace 'install
(lambda _
(invoke "make" "install")))
(replace 'check
(lambda _
(invoke "make" "tests"))))))
(synopsis "Timed references for imperative state") (synopsis "Timed references for imperative state")
(description "Timed references for imperative state. This module provides (description "Timed references for imperative state. This module provides
an alternative type for references (or mutable cells) supporting undo/redo an alternative type for references (or mutable cells) supporting undo/redo