zip: *Flags are lists

This commit is contained in:
Robin Gloster
2019-12-30 11:13:42 +01:00
committed by Jan Tojnar
parent e49f0d4985
commit 76b774e89a
+5 -2
View File
@@ -19,8 +19,11 @@ stdenv.mkDerivation {
hardeningDisable = [ "format" ];
makefile = "unix/Makefile";
buildFlags = if stdenv.isCygwin then "cygwin" else "generic";
installFlags = "prefix=$(out) INSTALL=cp";
buildFlags = if stdenv.isCygwin then [ "cygwin" ] else [ "generic" ];
installFlags = [
"prefix=${placeholder ''out''}"
"INSTALL=cp"
];
patches = if (enableNLS && !stdenv.isCygwin) then [ ./natspec-gentoo.patch.bz2 ] else [];