mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
15 lines
241 B
Nix
15 lines
241 B
Nix
{ buildDunePackage
|
|
, timedesc
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "timedesc-tzdb";
|
|
|
|
inherit (timedesc) version src sourceRoot;
|
|
|
|
meta = timedesc.meta // {
|
|
description = "Virtual library for Timedesc time zone database backends";
|
|
};
|
|
}
|
|
|