1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/ocaml-modules/streaming/default.nix
2024-04-23 09:34:01 +02:00

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