mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
17 lines
289 B
Nix
17 lines
289 B
Nix
{ 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";
|
|
};
|
|
}
|