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

34 lines
1 KiB
Nix
Raw Normal View History

{ 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
http://pkgs.fedoraproject.org/repo/pkgs/zip/zip30.tar.gz/7b74551e63f8ee6aab6fbc86676c0d37/zip30.tar.gz
];
sha256 = "0sb3h3067pzf3a7mlxn1hikpcjrsvycjcnj9hl9b1c3ykcgvps7h";
};
hardeningDisable = [ "format" ];
2015-12-23 01:59:47 +00:00
makefile = "unix/Makefile";
buildFlags = if stdenv.isCygwin then "cygwin" else "generic";
installFlags = "prefix=$(out) INSTALL=cp";
2014-10-26 18:37:09 +00:00
patches = if (enableNLS && !stdenv.isCygwin) then [ ./natspec-gentoo.patch.bz2 ] else [];
2014-10-26 18:37:09 +00:00
buildInputs = stdenv.lib.optional enableNLS libnatspec
++ stdenv.lib.optional stdenv.isCygwin libiconv;
meta = {
2014-06-23 11:35:08 +00:00
description = "Compressor/archiver for creating and modifying zipfiles";
homepage = http://www.info-zip.org;
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.urkud ];
};
}