zip: disable nls patch by default.

This patch breaks zip -y (symlinks are turned into regular files).

See https://bugs.gentoo.org/show_bug.cgi?id=571676#c4
This commit is contained in:
Shea Levy 2016-01-27 14:00:46 -05:00
parent 49f55ebf97
commit 71a4d36983

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, enableNLS ? true, libnatspec ? null, libiconv }: { stdenv, fetchurl, enableNLS ? false, libnatspec ? null, libiconv }:
assert enableNLS -> libnatspec != null; assert enableNLS -> libnatspec != null;