diff options
author | Shea Levy | 2016-01-27 14:00:46 -0500 |
---|---|---|
committer | Shea Levy | 2016-01-27 14:00:46 -0500 |
commit | 71a4d369832e54cb8bb732c97d1773eb14ed4bd6 (patch) | |
tree | 5ecb413a5e67ab9cf23c60bd124cb9444bca8389 | |
parent | 49f55ebf97cdfbacb13f5a3a71571cdeecb6efcf (diff) |
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
-rw-r--r-- | pkgs/tools/archivers/zip/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/archivers/zip/default.nix b/pkgs/tools/archivers/zip/default.nix index 585bc72ad967..431ed354d21c 100644 --- a/pkgs/tools/archivers/zip/default.nix +++ b/pkgs/tools/archivers/zip/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, enableNLS ? true, libnatspec ? null, libiconv }: +{ stdenv, fetchurl, enableNLS ? false, libnatspec ? null, libiconv }: assert enableNLS -> libnatspec != null; |