gnu: Add ocaml-bheap.

* gnu/packages/ocaml.scm (ocaml-bheap): New variable.

Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
raingloom 2023-02-15 23:00:25 +01:00 committed by Christopher Baines
parent 1276f9da9a
commit 991a289a02
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -3107,6 +3107,28 @@ (define-public ocaml-io-page
avoid copying the data contained within the page.")
(license license:isc)))
(define-public ocaml-bheap
(package
(name "ocaml-bheap")
(version "2.0.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/backtracking/bheap")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"0b8md5zl4yz7j62jz0bf7lwyl0pyqkxqx36ghkgkbkxb4zzggfj1"))))
(build-system dune-build-system)
(native-inputs (list ocaml-stdlib-shims))
(home-page "https://github.com/backtracking/bheap")
(synopsis "Priority queues")
(description
"Traditional implementation of priority queues using a binary heap
encoded in a resizable array.")
(license license:lgpl2.1)))
(define-public ocaml-luv
(package
(name "ocaml-luv")