aff1f4ab94
The following parameters are now available: * hardeningDisable To disable specific hardening flags * hardeningEnable To enable specific hardening flags Only the cc-wrapper supports this right now, but these may be reused by other wrappers, builders or setup hooks. cc-wrapper supports the following flags: * fortify * stackprotector * pie (disabled by default) * pic * strictoverflow * format * relro * bindnow
34 lines
1.0 KiB
Nix
34 lines
1.0 KiB
Nix
{ stdenv, fetchurl, enableNLS ? false, libnatspec ? null, libiconv }:
|
|
|
|
assert enableNLS -> libnatspec != null;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "zip-3.0";
|
|
|
|
src = fetchurl {
|
|
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" ];
|
|
|
|
makefile = "unix/Makefile";
|
|
buildFlags = if stdenv.isCygwin then "cygwin" else "generic";
|
|
installFlags = "prefix=$(out) INSTALL=cp";
|
|
|
|
patches = if (enableNLS && !stdenv.isCygwin) then [ ./natspec-gentoo.patch.bz2 ] else [];
|
|
|
|
buildInputs = stdenv.lib.optional enableNLS libnatspec
|
|
++ stdenv.lib.optional stdenv.isCygwin libiconv;
|
|
|
|
meta = {
|
|
description = "Compressor/archiver for creating and modifying zipfiles";
|
|
homepage = http://www.info-zip.org;
|
|
platforms = stdenv.lib.platforms.all;
|
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
|
};
|
|
}
|