mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
ocamlPackages.streaming: init at 0.8.0
This commit is contained in:
parent
738918a009
commit
2058f30118
26
pkgs/development/ocaml-modules/streaming/default.nix
Normal file
26
pkgs/development/ocaml-modules/streaming/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -1715,6 +1715,8 @@ let
|
||||
stog_asy = callPackage ../applications/misc/stog/asy.nix { };
|
||||
stog_markdown = callPackage ../applications/misc/stog/markdown.nix { };
|
||||
|
||||
streaming = callPackage ../development/ocaml-modules/streaming { };
|
||||
|
||||
stringext = callPackage ../development/ocaml-modules/stringext { };
|
||||
|
||||
syslog = callPackage ../development/ocaml-modules/syslog { };
|
||||
|
Loading…
Reference in New Issue
Block a user