depot/third_party/nixpkgs/pkgs/development/ocaml-modules/streaming/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

26 lines
618 B
Nix

{ 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 ];
};
}