ocamlPackages.oseq: init at 0.4

This commit is contained in:
Vincent Laporte 2022-12-26 00:12:12 +01:00 committed by Vincent Laporte
parent 339c7867b8
commit 9f7b13abc5
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ lib, fetchFromGitHub, buildDunePackage
, seq
, containers, qcheck
}:
buildDunePackage rec {
version = "0.4";
pname = "oseq";
src = fetchFromGitHub {
owner = "c-cube";
repo = pname;
rev = "v${version}";
hash = "sha256-FoCBvvPwa/dUCrgDEd0clEKAO7EcpedjaO4v+yUO874=";
};
propagatedBuildInputs = [ seq ];
duneVersion = "3";
doCheck = true;
checkInputs = [
containers
qcheck
];
meta = {
homepage = "https://c-cube.github.io/oseq/";
description = "Purely functional iterators compatible with standard `seq`";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.vbgl ];
};
}

View file

@ -1116,6 +1116,8 @@ let
ordering = callPackage ../development/ocaml-modules/ordering { };
oseq = callPackage ../development/ocaml-modules/oseq { };
otfm = callPackage ../development/ocaml-modules/otfm { };
otoml = callPackage ../development/ocaml-modules/otoml { };