mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 22:45:08 +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";
|
|
};
|
|
}
|
|
|