2021-01-11 08:54:33 +01:00
|
|
|
{ lib, 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 = [
|
2020-04-01 03:11:51 +02:00
|
|
|
"ftp://ftp.info-zip.org/pub/infozip/src/zip30.tgz"
|
|
|
|
"https://src.fedoraproject.org/repo/pkgs/zip/zip30.tar.gz/7b74551e63f8ee6aab6fbc86676c0d37/zip30.tar.gz"
|
2012-11-06 11:23:34 +01:00
|
|
|
];
|
2011-08-01 03:10:52 +02:00
|
|
|
sha256 = "0sb3h3067pzf3a7mlxn1hikpcjrsvycjcnj9hl9b1c3ykcgvps7h";
|
2003-11-07 12:18:47 +01:00
|
|
|
};
|
2017-12-17 06:33:20 +01:00
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace unix/Makefile --replace 'CC = cc' ""
|
|
|
|
'';
|
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";
|
2019-10-26 17:39:27 +02:00
|
|
|
buildFlags = if stdenv.isCygwin then [ "cygwin" ] else [ "generic" ];
|
|
|
|
installFlags = [
|
2021-01-24 10:19:10 +01:00
|
|
|
"prefix=${placeholder "out"}"
|
2019-10-26 17:39:27 +02:00
|
|
|
"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
|
|
|
|
2021-01-15 10:19:50 +01:00
|
|
|
buildInputs = lib.optional enableNLS libnatspec
|
|
|
|
++ lib.optional stdenv.isCygwin libiconv;
|
2012-02-01 23:32:16 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2014-06-23 13:35:08 +02:00
|
|
|
description = "Compressor/archiver for creating and modifying zipfiles";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.info-zip.org";
|
2018-08-09 11:13:59 +02:00
|
|
|
license = licenses.bsdOriginal;
|
|
|
|
platforms = 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
|
|
|
}
|