2016-01-27 20:00:46 +01:00
|
|
|
{ stdenv, fetchurl, enableNLS ? false, libnatspec ? null, libiconv }:
|
2012-02-25 16:54:57 +01:00
|
|
|
|
|
|
|
assert enableNLS -> libnatspec != null;
|
2011-08-01 03:10:44 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2011-08-01 03:10:52 +02:00
|
|
|
name = "zip-3.0";
|
2011-08-01 03:10:44 +02:00
|
|
|
|
2003-11-07 12:18:47 +01:00
|
|
|
src = fetchurl {
|
2012-11-06 11:23:34 +01:00
|
|
|
urls = [
|
|
|
|
ftp://ftp.info-zip.org/pub/infozip/src/zip30.tgz
|
|
|
|
http://pkgs.fedoraproject.org/repo/pkgs/zip/zip30.tar.gz/7b74551e63f8ee6aab6fbc86676c0d37/zip30.tar.gz
|
|
|
|
];
|
2011-08-01 03:10:52 +02:00
|
|
|
sha256 = "0sb3h3067pzf3a7mlxn1hikpcjrsvycjcnj9hl9b1c3ykcgvps7h";
|
2003-11-07 12:18:47 +01:00
|
|
|
};
|
2008-01-31 11:11:09 +01:00
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2015-12-23 02:59:47 +01:00
|
|
|
|
2015-12-15 10:37:57 +01:00
|
|
|
makefile = "unix/Makefile";
|
|
|
|
buildFlags = if stdenv.isCygwin then "cygwin" else "generic";
|
|
|
|
installFlags = "prefix=$(out) INSTALL=cp";
|
2011-08-01 03:10:36 +02:00
|
|
|
|
2014-10-26 19:37:09 +01:00
|
|
|
patches = if (enableNLS && !stdenv.isCygwin) then [ ./natspec-gentoo.patch.bz2 ] else [];
|
2012-02-01 23:32:16 +01:00
|
|
|
|
2014-10-26 19:37:09 +01:00
|
|
|
buildInputs = stdenv.lib.optional enableNLS libnatspec
|
|
|
|
++ stdenv.lib.optional stdenv.isCygwin libiconv;
|
2012-02-01 23:32:16 +01:00
|
|
|
|
2008-01-31 11:11:09 +01:00
|
|
|
meta = {
|
2014-06-23 13:35:08 +02:00
|
|
|
description = "Compressor/archiver for creating and modifying zipfiles";
|
2008-01-31 11:11:09 +01:00
|
|
|
homepage = http://www.info-zip.org;
|
2012-02-01 23:32:16 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2017-03-27 19:11:17 +02:00
|
|
|
maintainers = [ ];
|
2008-01-31 11:11:09 +01:00
|
|
|
};
|
2003-11-07 12:18:47 +01:00
|
|
|
}
|