mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-15 03:15:09 -05:00
gnu: ocaml-timed: Update to 1.1.
* gnu/packages/ocaml.scm (ocaml-timed): Update to 1.1.
This commit is contained in:
parent
893299b3ee
commit
07fecda3dd
1 changed files with 5 additions and 16 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue