depot/third_party/nixpkgs/pkgs/development/ocaml-modules/timedesc/tzlocal.nix

17 lines
289 B
Nix
Raw Normal View History

{ 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";
};
}