3
0
Fork 0
forked from mirrors/nixpkgs

tzdata: use symlinks instead of hardlinks

Hard links are not handled by nar, so installing from binary cache
unnecessarily duplicates data. Also, it's more common to use symlinks for the
tzdata package in other distributions.
This commit is contained in:
Mihaly Barasz 2014-04-29 16:06:48 +02:00 committed by Eelco Dolstra
parent dc224baba1
commit 1f2228cdc1

View file

@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
sourceRoot = "."; sourceRoot = ".";
outputs = [ "out" "lib" ]; outputs = [ "out" "lib" ];
makeFlags = "TOPDIR=$(out) TZDIR=$(out)/share/zoneinfo ETCDIR=$(TMPDIR)/etc LIBDIR=$(lib)/lib MANDIR=$(TMPDIR)/man AWK=awk"; makeFlags = "TOPDIR=$(out) TZDIR=$(out)/share/zoneinfo ETCDIR=$(TMPDIR)/etc LIBDIR=$(lib)/lib MANDIR=$(TMPDIR)/man AWK=awk CFLAGS=-DHAVE_LINK=0";
postInstall = postInstall =
'' ''