2022-11-29 22:23:11 +00:00
|
|
|
{ lib, stdenv, fetchurl, buildPackages }:
|
2012-09-18 18:14:22 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "tzdata";
|
2022-11-29 22:23:11 +00:00
|
|
|
version = "2022g";
|
2022-08-11 22:26:39 +01:00
|
|
|
|
|
|
|
srcs = [
|
|
|
|
(fetchurl {
|
|
|
|
url = "https://data.iana.org/time-zones/releases/tzdata${version}.tar.gz";
|
2022-11-29 22:23:11 +00:00
|
|
|
hash = "sha256-RJHbgoGulKhNk55Ce92D3DifJnZNJ9mlxS14LBZ2RHg=";
|
2022-08-11 22:26:39 +01:00
|
|
|
})
|
|
|
|
(fetchurl {
|
|
|
|
url = "https://data.iana.org/time-zones/releases/tzcode${version}.tar.gz";
|
2022-11-29 22:23:11 +00:00
|
|
|
hash = "sha256-lhC7C5ZW/0BMNhpB8yhtpTBktUadhPAMnLIxTIYU2nQ=";
|
2022-08-11 22:26:39 +01:00
|
|
|
})
|
|
|
|
];
|
2012-09-18 18:14:22 +01:00
|
|
|
|
|
|
|
sourceRoot = ".";
|
2016-04-02 15:24:12 +01:00
|
|
|
|
2022-10-01 20:00:15 +01:00
|
|
|
patches = lib.optionals stdenv.hostPlatform.isWindows [
|
|
|
|
./0001-Add-exe-extension-for-MS-Windows-binaries.patch
|
|
|
|
];
|
|
|
|
|
2018-05-07 23:19:20 +01:00
|
|
|
outputs = [ "out" "bin" "man" "dev" ];
|
2016-04-02 15:24:12 +01:00
|
|
|
propagatedBuildOutputs = [];
|
2012-09-18 18:14:22 +01:00
|
|
|
|
2016-03-16 04:41:47 +00:00
|
|
|
makeFlags = [
|
|
|
|
"TOPDIR=$(out)"
|
|
|
|
"TZDIR=$(out)/share/zoneinfo"
|
2018-05-07 23:19:20 +01:00
|
|
|
"BINDIR=$(bin)/bin"
|
|
|
|
"ZICDIR=$(bin)/bin"
|
2016-03-16 04:41:47 +00:00
|
|
|
"ETCDIR=$(TMPDIR)/etc"
|
2021-12-19 00:01:23 +00:00
|
|
|
"TZDEFAULT=tzdefault-to-remove"
|
2016-04-02 15:24:12 +01:00
|
|
|
"LIBDIR=$(dev)/lib"
|
2017-07-11 12:06:49 +01:00
|
|
|
"MANDIR=$(man)/share/man"
|
2016-03-16 04:41:47 +00:00
|
|
|
"AWK=awk"
|
|
|
|
"CFLAGS=-DHAVE_LINK=0"
|
2020-11-05 16:13:59 +00:00
|
|
|
"CFLAGS+=-DZIC_BLOAT_DEFAULT=\\\"fat\\\""
|
2018-02-28 19:50:17 +00:00
|
|
|
"cc=${stdenv.cc.targetPrefix}cc"
|
|
|
|
"AR=${stdenv.cc.targetPrefix}ar"
|
2022-10-01 20:00:15 +01:00
|
|
|
] ++ lib.optionals stdenv.hostPlatform.isWindows [
|
|
|
|
"CFLAGS+=-DHAVE_DIRECT_H"
|
|
|
|
"CFLAGS+=-DHAVE_SYMLINK=0"
|
|
|
|
"CFLAGS+=-DRESERVE_STD_EXT_IDS"
|
2016-03-16 04:41:47 +00:00
|
|
|
];
|
2012-09-18 18:14:22 +01:00
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # needs more tools
|
|
|
|
|
2022-10-01 20:00:15 +01:00
|
|
|
installFlags = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
|
|
|
"zic=${buildPackages.tzdata.bin}/bin/zic"
|
|
|
|
];
|
2018-02-28 19:50:17 +00:00
|
|
|
|
2012-09-18 18:14:22 +01:00
|
|
|
postInstall =
|
|
|
|
''
|
2014-04-29 14:57:31 +01:00
|
|
|
rm $out/share/zoneinfo-posix
|
2021-12-19 00:01:23 +00:00
|
|
|
rm $out/share/zoneinfo/tzdefault-to-remove
|
2017-11-22 09:04:41 +00:00
|
|
|
mkdir $out/share/zoneinfo/posix
|
|
|
|
( cd $out/share/zoneinfo/posix; ln -s ../* .; rm posix )
|
2012-09-18 18:14:22 +01:00
|
|
|
mv $out/share/zoneinfo-leaps $out/share/zoneinfo/right
|
2014-03-10 20:36:43 +00:00
|
|
|
|
2016-04-02 15:24:12 +01:00
|
|
|
mkdir -p "$dev/include"
|
|
|
|
cp tzfile.h "$dev/include/tzfile.h"
|
2012-09-18 18:14:22 +01:00
|
|
|
'';
|
|
|
|
|
2017-12-01 17:15:10 +00:00
|
|
|
setupHook = ./tzdata-setup-hook.sh;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.iana.org/time-zones";
|
2012-09-18 18:14:22 +01:00
|
|
|
description = "Database of current and historical time zones";
|
2020-12-29 20:41:01 +00:00
|
|
|
changelog = "https://github.com/eggert/tz/blob/${version}/NEWS";
|
2021-06-03 13:35:04 +01:00
|
|
|
license = with licenses; [
|
|
|
|
bsd3 # tzcode
|
|
|
|
publicDomain # tzdata
|
|
|
|
];
|
2018-05-07 23:19:20 +01:00
|
|
|
platforms = platforms.all;
|
2021-10-02 00:34:47 +01:00
|
|
|
maintainers = with maintainers; [ ajs124 fpletz ];
|
2012-09-18 18:14:22 +01:00
|
|
|
};
|
|
|
|
}
|