gnu: ocaml-integers: Update to 0.4.0.
* gnu/packages/ocaml.scm (ocaml-integers): Update to 0.4.0. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
This commit is contained in:
parent
b2122b07dc
commit
b477a9f42e
1 changed files with 10 additions and 19 deletions
|
@ -17,7 +17,7 @@
|
|||
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
|
||||
;;; Copyright © 2020 Simon Tournier <zimon.toutoune@gmail.com>
|
||||
;;; Copyright © 2020 divoplade <d@divoplade.fr>
|
||||
;;; Copyright © 2020 pukkamustard <pukkamustard@posteo.net>
|
||||
;;; Copyright © 2020, 2021 pukkamustard <pukkamustard@posteo.net>
|
||||
;;; Copyright © 2021 aecepoglu <aecepoglu@fastmail.fm>
|
||||
;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||
;;;
|
||||
|
@ -3809,29 +3809,20 @@ sensitive completion, colors, and more.")
|
|||
(define-public ocaml-integers
|
||||
(package
|
||||
(name "ocaml-integers")
|
||||
(version "0.3.0")
|
||||
(version "0.4.0")
|
||||
(home-page "https://github.com/ocamllabs/ocaml-integers")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append home-page
|
||||
"/releases/download/v0.2.2/integers-"
|
||||
version ".tbz"))
|
||||
(file-name (string-append name "-" version ".tbz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url home-page)
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"08b1ljw88ny3l0mdq6xmffjk8anfc77igryva5jz1p6f4f746ywk"))))
|
||||
(build-system ocaml-build-system)
|
||||
"0yp3ab0ph7mp5741g7333x4nx8djjvxzpnv3zvsndyzcycspn9dd"))))
|
||||
(build-system dune-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f; no tests
|
||||
#:build-flags (list "build")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure))))
|
||||
(native-inputs
|
||||
`(("ocamlbuild" ,ocamlbuild)))
|
||||
(inputs
|
||||
`(("topkg" ,ocaml-topkg)
|
||||
("opam" ,opam)))
|
||||
`(#:tests? #f)) ; no tests
|
||||
(synopsis "Various signed and unsigned integer types for OCaml")
|
||||
(description "The ocaml-integers library provides a number of 8-, 16-, 32-
|
||||
and 64-bit signed and unsigned integer types, together with aliases such as
|
||||
|
|
Reference in a new issue