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