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