3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/archivers/zip/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, enableNLS ? false, libnatspec ? null, libiconv }:
assert enableNLS -> libnatspec != null;
2021-08-12 19:38:37 +01:00
stdenv.mkDerivation rec {
pname = "zip";
version = "3.0";
src = fetchurl {
2012-11-06 10:23:34 +00:00
urls = [
2021-08-12 19:38:37 +01:00
"ftp://ftp.info-zip.org/pub/infozip/src/zip${lib.replaceStrings ["."] [""] version}.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 16:39:27 +01:00
buildFlags = if stdenv.isCygwin then [ "cygwin" ] else [ "generic" ];
installFlags = [
"prefix=${placeholder "out"}"
2019-10-26 16:39:27 +01: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 12:35:08 +01:00
description = "Compressor/archiver for creating and modifying zipfiles";
homepage = "http://www.info-zip.org";
2018-08-09 10:13:59 +01:00
license = licenses.bsdOriginal;
platforms = platforms.all;
maintainers = [ ];
};
}