* Package name : haskell-tz Version : 0.1.3.6 Upstream Author : Janus Troelsen <ysangkok@gmail.com> * URL : https://hackage.haskell.org/package/tz * License : Apacehe-2.0 Programming Lang: Haskell Description : Efficient time zone handling The goal of this package is to provide a library that can read time zone info files (aka. Olson files), and does time zone conversions in a pure and efficient way.
Hi Robert, Do we really need to ship yet another package with these files? It's already annoying to update two sources in stable updates to get this right. I don't think it's great to add a third source. Maybe you can expose the system files somehow to haskell instead? Paul
Hi Paul, I've patched haskell-tzdata (where haskell-tz gets the data from) so that it uses the system files instead of supplying them. So it should be ok.
Are the system files used at build time or at runtime? After an update of the tzdata source/binary packages, will haskell-tzdata, haskell-tz or any packages depending on them need a rebuild?
They're used at runtime, so nothing would need to be rebuilt if tzdata was updated.
Excellent, thats definitely the best option for timezone data.