mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: ocaml-alcotest: Update to 0.8.5.
* gnu/packages/ocaml.scm (ocaml-alcotest): Update to 0.8.5.
This commit is contained in:
parent
78b3748c1c
commit
23c8a97a5b
1 changed files with 11 additions and 13 deletions
|
@ -1724,28 +1724,26 @@ (define-public ocaml4.02-astring
|
||||||
(define-public ocaml-alcotest
|
(define-public ocaml-alcotest
|
||||||
(package
|
(package
|
||||||
(name "ocaml-alcotest")
|
(name "ocaml-alcotest")
|
||||||
(version "0.7.2")
|
(version "0.8.5")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/mirage/alcotest/releases/"
|
(uri (string-append "https://github.com/mirage/alcotest/releases/"
|
||||||
"download/" version "/alcotest-" version ".tbz"))
|
"download/" version "/alcotest-" version ".tbz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0g5lzk0gpfx4q8hyhr460gr4lab5wakfxsmhfwvb3yinxwzs95gc"))))
|
"0szwjxvaahgynsx0apj81jxj3ki6yz4is9mh2wkcbx66qy7n6fvb"))))
|
||||||
(build-system ocaml-build-system)
|
(build-system dune-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f
|
`(#:package "alcotest"
|
||||||
#:build-flags (list "build")
|
#:test-target "."))
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(delete 'configure))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("ocamlbuild" ,ocamlbuild)
|
`(("ocamlbuild" ,ocamlbuild)))
|
||||||
("opam" ,opam)
|
|
||||||
("topkg" ,ocaml-topkg)))
|
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("fmt" ,ocaml-fmt)
|
`(("ocaml-astring" ,ocaml-astring)
|
||||||
("astring" ,ocaml-astring)))
|
("ocaml-cmdliner" ,ocaml-cmdliner)
|
||||||
|
("ocaml-fmt" ,ocaml-fmt)
|
||||||
|
("ocaml-result" ,ocaml-result)
|
||||||
|
("ocaml-uuidm" ,ocaml-uuidm)))
|
||||||
(home-page "https://github.com/mirage/alcotest")
|
(home-page "https://github.com/mirage/alcotest")
|
||||||
(synopsis "Lightweight OCaml test framework")
|
(synopsis "Lightweight OCaml test framework")
|
||||||
(description "Alcotest exposes simple interface to perform unit tests. It
|
(description "Alcotest exposes simple interface to perform unit tests. It
|
||||||
|
|
Loading…
Reference in a new issue