mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
16 lines
283 B
Nix
16 lines
283 B
Nix
{ 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";
|
|
};
|
|
}
|