mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
ocamlPackages.conduit-lwt-unix: disable tests with lwt ≥ 6 ocamlPackages.js_of_ocaml-lwt: log support is optional ocamlPackages.lwt_log: mark as broken with lwt ≥ 6 ocamlPackages.tezt: mark as broken with lwt ≥ 6
29 lines
601 B
Nix
29 lines
601 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildDunePackage,
|
|
lwt,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "lwt_log";
|
|
version = "1.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aantron";
|
|
repo = "lwt_log";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-ODTD3KceEnrEzD01CeuNg4BNKOtKZEpYaDIB+RIte1U=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ lwt ];
|
|
|
|
meta = {
|
|
description = "Lwt logging library (deprecated)";
|
|
homepage = "https://github.com/aantron/lwt_log";
|
|
license = lib.licenses.lgpl21;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
broken = lib.versionAtLeast lwt.version "6.0.0";
|
|
};
|
|
})
|