summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/psq/default.nix
blob: ea9a0615b414973dfeb60dd8a7d64fa194a65551 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, buildDunePackage, ocaml, fetchurl, seq, qcheck-alcotest }:

buildDunePackage rec {
  minimumOCamlVersion = "4.03";
  pname = "psq";
  version = "0.2.0";

  useDune2 = true;

  src = fetchurl {
    url = "https://github.com/pqwy/psq/releases/download/v${version}/psq-v${version}.tbz";
    sha256 = "1j4lqkq17rskhgcrpgr4n1m1a2b1x35mlxj6f9g05rhpmgvgvknk";
  };

  propagatedBuildInputs = [ seq ];

  doCheck = lib.versionAtLeast ocaml.version "4.08";
  checkInputs = [ qcheck-alcotest ];

  meta = {
    description = "Functional Priority Search Queues for OCaml";
    homepage = "https://github.com/pqwy/psq";
    maintainers = [ lib.maintainers.vbgl ];
    license = lib.licenses.isc;
  };
}