ocamlPackages.streaming: init at 0.8.0

This commit is contained in:
Vincent Laporte 2024-04-23 08:49:55 +02:00
parent 738918a009
commit 2058f30118
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib
, buildDunePackage
, fetchurl
, stdlib-shims
}:
buildDunePackage rec {
pname = "streaming";
version = "0.8.0";
minimalOCamlVersion = "4.08";
src = fetchurl {
url = "https://github.com/odis-labs/streaming/releases/download/${version}/streaming-${version}.tbz";
hash = "sha256-W+3GYZpsLj1SnQhuSmjXdi/85fMajWpz4b7x5W0bnJs=";
};
propagatedBuildInputs = [ stdlib-shims ];
meta = {
homepage = "https://odis-labs.github.io/streaming";
license = lib.licenses.isc;
description = "Fast, safe and composable streaming abstractions";
maintainers = [ lib.maintainers.vbgl ];
};
}

View File

@ -1715,6 +1715,8 @@ let
stog_asy = callPackage ../applications/misc/stog/asy.nix { };
stog_markdown = callPackage ../applications/misc/stog/markdown.nix { };
streaming = callPackage ../development/ocaml-modules/streaming { };
stringext = callPackage ../development/ocaml-modules/stringext { };
syslog = callPackage ../development/ocaml-modules/syslog { };