{ stdenv, fetchurl }: stdenv.mkDerivation rec { name = "tzdata-${version}"; version = "2016e"; srcs = [ (fetchurl { url = "http://www.iana.org/time-zones/repository/releases/tzdata${version}.tar.gz"; sha256 = "10dxnv6mwpm1rbv0dp7fhih4jd7lvqgmw7x2gy6h9i4dy6czh05s"; }) (fetchurl { url = "http://www.iana.org/time-zones/repository/releases/tzcode${version}.tar.gz"; sha256 = "17j5z894cfnid3dhh8y934hn86pvxz2ym672s1bhdag8spyc9n2p"; }) ]; sourceRoot = "."; outputs = [ "out" "lib" ]; makeFlags = "TOPDIR=$(out) TZDIR=$(out)/share/zoneinfo ETCDIR=$(TMPDIR)/etc LIBDIR=$(lib)/lib MANDIR=$(TMPDIR)/man AWK=awk CFLAGS=-DHAVE_LINK=0"; postInstall = '' rm $out/share/zoneinfo-posix ln -s . $out/share/zoneinfo/posix mv $out/share/zoneinfo-leaps $out/share/zoneinfo/right mkdir -p "$lib/include" cp tzfile.h "$lib/include/tzfile.h" ''; meta = { homepage = http://www.iana.org/time-zones; description = "Database of current and historical time zones"; platforms = stdenv.lib.platforms.all; }; }