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

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

16 lines
283 B
Nix
Raw Normal View History

{ buildDunePackage
2024-01-26 13:50:19 +00:00
, 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";
};
}