2018-08-15 18:52:30 -07:00
|
|
|
{ stdenv, fetchurl }:
|
2007-09-04 04:55:19 -07:00
|
|
|
|
2010-08-06 15:26:25 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2015-02-12 11:51:26 -08:00
|
|
|
name = "p7zip-${version}";
|
2016-07-19 00:25:35 -07:00
|
|
|
version = "16.02";
|
2015-02-12 11:51:26 -08:00
|
|
|
|
2007-09-04 04:55:19 -07:00
|
|
|
src = fetchurl {
|
2015-02-12 11:51:26 -08:00
|
|
|
url = "mirror://sourceforge/p7zip/p7zip_${version}_src_all.tar.bz2";
|
2016-07-19 00:25:35 -07:00
|
|
|
sha256 = "5eb20ac0e2944f6cb9c2d51dd6c4518941c185347d4089ea89087ffdd6e2341f";
|
2007-09-04 04:55:19 -07:00
|
|
|
};
|
2010-08-06 15:26:25 -07:00
|
|
|
|
2016-12-07 16:38:50 -08:00
|
|
|
patches = [
|
2018-08-15 18:52:30 -07:00
|
|
|
./12-CVE-2016-9296.patch
|
|
|
|
./13-CVE-2017-17969.patch
|
2016-12-07 16:38:50 -08:00
|
|
|
];
|
|
|
|
|
2017-04-07 13:51:23 -07:00
|
|
|
# Default makefile is full of impurities on Darwin. The patch doesn't hurt Linux so I'm leaving it unconditional
|
|
|
|
postPatch = ''
|
|
|
|
sed -i '/CC=\/usr/d' makefile.macosx_llvm_64bits
|
|
|
|
|
|
|
|
# I think this is a typo and should be CXX? Either way let's kill it
|
|
|
|
sed -i '/XX=\/usr/d' makefile.macosx_llvm_64bits
|
2018-10-12 05:36:48 -07:00
|
|
|
'' + stdenv.lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform) ''
|
|
|
|
substituteInPlace makefile.machine \
|
|
|
|
--replace 'CC=gcc' 'CC=${stdenv.cc.targetPrefix}gcc' \
|
|
|
|
--replace 'CXX=g++' 'CXX=${stdenv.cc.targetPrefix}g++'
|
2017-04-07 13:51:23 -07:00
|
|
|
'';
|
|
|
|
|
2013-08-14 20:53:43 -07:00
|
|
|
preConfigure = ''
|
|
|
|
makeFlagsArray=(DEST_HOME=$out)
|
|
|
|
buildFlags=all3
|
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
2016-05-26 01:59:55 -07:00
|
|
|
cp makefile.macosx_llvm_64bits makefile.machine
|
2013-08-14 20:53:43 -07:00
|
|
|
'';
|
2007-09-06 13:45:36 -07:00
|
|
|
|
2012-10-05 13:06:35 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-12-17 04:04:59 -08:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2007-09-06 13:45:36 -07:00
|
|
|
meta = {
|
|
|
|
homepage = http://p7zip.sourceforge.net/;
|
|
|
|
description = "A port of the 7-zip archiver";
|
2014-06-18 21:19:00 -07:00
|
|
|
# license = stdenv.lib.licenses.lgpl21Plus; + "unRAR restriction"
|
2009-10-07 04:29:23 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2014-11-05 00:12:35 -08:00
|
|
|
maintainers = [ stdenv.lib.maintainers.raskin ];
|
2018-08-09 03:41:06 -07:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2007-09-06 13:45:36 -07:00
|
|
|
};
|
2007-09-04 04:55:19 -07:00
|
|
|
}
|