ocamlPackages.seqes: init at 0.2

This commit is contained in:
Ulrik Strid 2023-06-20 08:51:51 +02:00
parent fbb31c62e8
commit f737b4d32c
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ lib, fetchurl, buildDunePackage, qcheck, qcheck-alcotest, alcotest }:
buildDunePackage rec {
pname = "seqes";
version = "0.2";
src = fetchurl {
url = "https://gitlab.com/nomadic-labs/seqes/-/archive/${version}/seqes-${version}.tar.gz";
sha256 = "sha256-IxLA0jaIPdX9Zn/GL8UHDJYjA1UBW6leGbZmp64YMjI=";
};
checkInputs = [ qcheck qcheck-alcotest alcotest ];
meta = with lib; {
description = "Variations of the Seq module with monads folded into the type";
homepage = "https://gitlab.com/nomadic-labs/seqes";
license = licenses.lgpl2; # Same as OCaml
maintainers = [ maintainers.ulrikstrid ];
};
}

View File

@ -1513,6 +1513,8 @@ let
seq = callPackage ../development/ocaml-modules/seq { };
seqes = callPackage ../development/ocaml-modules/seqes { };
sha = callPackage ../development/ocaml-modules/sha { };
shared-memory-ring = callPackage ../development/ocaml-modules/shared-memory-ring { };