about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/mirage-logs/default.nix
blob: be9592fb374bd35cc19d29102a1d8ca5d552488a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, fetchurl, buildDunePackage
, logs, lwt, mirage-clock, ptime
, alcotest
}:

buildDunePackage rec {
  pname = "mirage-logs";
  version = "1.3.0";

  duneVersion = "3";

  src = fetchurl {
    url = "https://github.com/mirage/mirage-logs/releases/download/v${version}/mirage-logs-${version}.tbz";
    hash = "sha256-c1YQIutqp58TRz+a9Vd/69FCv0jnGRvFnei9BtSbOxA=";
  };

  propagatedBuildInputs = [ logs lwt mirage-clock ptime ];

  doCheck = true;
  checkInputs = [ alcotest ];

  meta = {
    description = "Reporter for the Logs library that writes log messages to stderr, using a Mirage `CLOCK` to add timestamps";
    homepage = "https://github.com/mirage/mirage-logs";
    license = lib.licenses.isc;
    maintainers = [ lib.maintainers.vbgl ];
  };
}