1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-16 07:48:58 +00:00

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;