summaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/streaming/default.nix
blob: 77912934d4b5d2d060bffd90fce2f4513cd62403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  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 ];
  };
}