about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/timedesc/tzlocal.nix
blob: 6dcbfd741075b2f532cefeeea252ce03c64193a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib
, buildDunePackage
, timedesc
}:

buildDunePackage {
  pname = "timedesc-tzlocal";

  inherit (timedesc) version src sourceRoot;

  minimalOCamlVersion = "4.08";

  meta = timedesc.meta // {
    description = "Virtual library for Timedesc local time zone detection backends";
  };
}