nixpkgs/pkgs/development/ocaml-modules/psq/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
696 B
Nix
Raw Permalink Normal View History

{ lib, buildDunePackage, ocaml, fetchurl, seq, qcheck-alcotest }:
buildDunePackage rec {
2023-03-11 13:42:13 +00:00
minimalOCamlVersion = "4.03";
pname = "psq";
2023-03-11 13:42:13 +00:00
version = "0.2.1";
2023-03-11 13:42:13 +00:00
duneVersion = "3";
src = fetchurl {
2023-03-11 13:42:13 +00:00
url = "https://github.com/pqwy/psq/releases/download/v${version}/psq-${version}.tbz";
hash = "sha256-QgBfUz6r50sXme4yuJBWVM1moivtSvK9Jmso2EYs00Q=";
};
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;
};
}