1{
2 lib,
3 buildDunePackage,
4 fetchurl,
5 stdlib-shims,
6}:
7
8buildDunePackage rec {
9 pname = "streaming";
10 version = "0.8.0";
11
12 minimalOCamlVersion = "4.08";
13
14 src = fetchurl {
15 url = "https://github.com/odis-labs/streaming/releases/download/${version}/streaming-${version}.tbz";
16 hash = "sha256-W+3GYZpsLj1SnQhuSmjXdi/85fMajWpz4b7x5W0bnJs=";
17 };
18
19 propagatedBuildInputs = [ stdlib-shims ];
20
21 meta = {
22 homepage = "https://odis-labs.github.io/streaming";
23 license = lib.licenses.isc;
24 description = "Fast, safe and composable streaming abstractions";
25 maintainers = [ lib.maintainers.vbgl ];
26 };
27}