diff options
author | pukkamustard <pukkamustard@posteo.net> | 2022-12-16 13:25:05 +0000 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2022-12-21 22:02:02 +0100 |
commit | a8e1dc8edffb51eb3acea8dc82642f498e6ec895 (patch) | |
tree | 5de2c8253f9a1846fd17ac383299654666cde08e /gnu/packages | |
parent | 642cf11aa2715b939ed450ccddc00860b22b709e (diff) | |
download | guix-a8e1dc8edffb51eb3acea8dc82642f498e6ec895.tar.gz |
gnu: Add ocaml-psq.
* gnu/packages/ocaml.scm (ocaml-psq): New variable. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/ocaml.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index f32d7b4f22..3c072672b7 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2723,6 +2723,28 @@ for mapping files in memory. This function is the same as the @command{Unix.map_file} function added in OCaml >= 4.06.") (license (list license:qpl license:lgpl2.0)))) +(define-public ocaml-psq + (package + (name "ocaml-psq") + (version "0.2.1") + (home-page "https://github.com/pqwy/psq") + (source + (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 (base32 + "0ahxbzkbq5sw8sqv31c2lil2zny4076q8b0dc7h5slq7i2r23d79")))) + (build-system dune-build-system) + (native-inputs (list ocaml-qcheck ocaml-alcotest)) + (synopsis "Functional Priority Search Queues for OCaml") + (description + "This library provides Functional Priority Search Queues for OCaml. +Typical applications are searches, schedulers and caches.") + (license license:isc))) + (define-public ocaml-lwt (package (name "ocaml-lwt") |