mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: ocaml-qtest: Update to 2.8.
* gnu/packages/ocaml.scm (ocaml-qtest): Update to 2.8. [source]: Update source uri, declare a source file-name. [home-page]: Update home-page.
This commit is contained in:
parent
79234c0a69
commit
fdb3fba30f
1 changed files with 6 additions and 6 deletions
|
@ -5,7 +5,7 @@
|
||||||
;;; Copyright © 2015 David Hashe <david.hashe@dhashe.com>
|
;;; Copyright © 2015 David Hashe <david.hashe@dhashe.com>
|
||||||
;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
|
;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
|
||||||
;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
|
;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016, 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2016, 2017 Julien Lepiller <julien@lepiller.eu>
|
;;; Copyright © 2016, 2017 Julien Lepiller <julien@lepiller.eu>
|
||||||
;;; Copyright © 2017 Ben Woodcroft <donttrustben@gmail.com>
|
;;; Copyright © 2017 Ben Woodcroft <donttrustben@gmail.com>
|
||||||
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
|
@ -1123,15 +1123,15 @@ (define-public ocaml-qcheck
|
||||||
(define-public ocaml-qtest
|
(define-public ocaml-qtest
|
||||||
(package
|
(package
|
||||||
(name "ocaml-qtest")
|
(name "ocaml-qtest")
|
||||||
(version "2.5")
|
(version "2.8")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/vincent-hugot/iTeML/"
|
(uri (string-append "https://github.com/vincent-hugot/qtest/"
|
||||||
"archive/v" version ".tar.gz"))
|
"archive/" version ".tar.gz"))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1hw3jqir7w79payy4knc38fa3nxcvl7ap6y6hnqavrhpi8zqb59j"))))
|
"1ff4if64mc9c7wmhjdgnlnh6k6a713piqzr4043zzj4s5pw7smxk"))))
|
||||||
(build-system ocaml-build-system)
|
(build-system ocaml-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("findlib" ,ocaml-findlib)))
|
`(("findlib" ,ocaml-findlib)))
|
||||||
|
@ -1145,7 +1145,7 @@ (define-public ocaml-qtest
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(delete 'configure))))
|
(delete 'configure))))
|
||||||
(home-page "https://github.com/vincent-hugot/iTeML")
|
(home-page "https://github.com/vincent-hugot/qtest")
|
||||||
(synopsis "Inline (Unit) Tests for OCaml")
|
(synopsis "Inline (Unit) Tests for OCaml")
|
||||||
(description "Qtest extracts inline unit tests written using a special
|
(description "Qtest extracts inline unit tests written using a special
|
||||||
syntax in comments. Those tests are then run using the oUnit framework and the
|
syntax in comments. Those tests are then run using the oUnit framework and the
|
||||||
|
|
Loading…
Reference in a new issue