Commit f737b4d3 authored by Ulrik Strid's avatar Ulrik Strid
Browse files

ocamlPackages.seqes: init at 0.2

parent fbb31c62
Loading
Loading
Loading
Loading
+19 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };