nixpkgs/pkgs/tools/archivers/zip/default.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, enableNLS ? false, libnatspec ? null, libiconv }:
assert enableNLS -> libnatspec != null;
stdenv.mkDerivation {
name = "zip-3.0";
src = fetchurl {
2012-11-06 10:23:34 +00:00
urls = [
"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 10:23:34 +00:00
];
sha256 = "0sb3h3067pzf3a7mlxn1hikpcjrsvycjcnj9hl9b1c3ykcgvps7h";
};
2017-12-17 05:33:20 +00:00
patchPhase = ''
substituteInPlace unix/Makefile --replace 'CC = cc' ""
'';
hardeningDisable = [ "format" ];
2015-12-23 01:59:47 +00:00
makefile = "unix/Makefile";
2019-10-26 15:39:27 +00:00
buildFlags = if stdenv.isCygwin then [ "cygwin" ] else [ "generic" ];
installFlags = [
"prefix=${placeholder "out"}"
2019-10-26 15:39:27 +00:00
"INSTALL=cp"
];
2014-10-26 18:37:09 +00:00
patches = if (enableNLS && !stdenv.isCygwin) then [ ./natspec-gentoo.patch.bz2 ] else [];
2021-01-15 09:19:50 +00:00
buildInputs = lib.optional enableNLS libnatspec
++ lib.optional stdenv.isCygwin libiconv;
meta = with lib; {
2014-06-23 11:35:08 +00:00
description = "Compressor/archiver for creating and modifying zipfiles";
homepage = "http://www.info-zip.org";
2018-08-09 09:13:59 +00:00
license = licenses.bsdOriginal;
platforms = platforms.all;
maintainers = [ ];
};
}