nixpkgs/pkgs/development/ocaml-modules/lwt_log/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
549 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildDunePackage, lwt }:
buildDunePackage rec {
pname = "lwt_log";
2022-08-30 07:19:53 +00:00
version = "1.1.2";
2022-08-30 07:19:53 +00:00
minimalOCamlVersion = "4.03";
2018-07-12 21:25:59 +00:00
src = fetchFromGitHub {
owner = "aantron";
repo = pname;
rev = version;
2022-08-30 07:19:53 +00:00
sha256 = "sha256-ODTD3KceEnrEzD01CeuNg4BNKOtKZEpYaDIB+RIte1U=";
};
2018-07-12 21:25:59 +00:00
propagatedBuildInputs = [ lwt ];
meta = {
description = "Lwt logging library (deprecated)";
homepage = "https://github.com/aantron/lwt_log";
license = lib.licenses.lgpl21;
maintainers = [ lib.maintainers.vbgl ];
2018-07-12 21:25:59 +00:00
};
}