evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / streaming / default.nix
blobf2a8c883f72406fd537995943360b9f57f87449c
1 { lib
2 , buildDunePackage
3 , fetchurl
4 , stdlib-shims
5 }:
7 buildDunePackage rec {
8   pname = "streaming";
9   version = "0.8.0";
11   minimalOCamlVersion = "4.08";
13   src = fetchurl {
14     url = "https://github.com/odis-labs/streaming/releases/download/${version}/streaming-${version}.tbz";
15     hash = "sha256-W+3GYZpsLj1SnQhuSmjXdi/85fMajWpz4b7x5W0bnJs=";
16   };
18   propagatedBuildInputs = [ stdlib-shims ];
20   meta = {
21     homepage = "https://odis-labs.github.io/streaming";
22     license = lib.licenses.isc;
23     description = "Fast, safe and composable streaming abstractions";
24     maintainers = [ lib.maintainers.vbgl ];
25   };