2016-12-08 00:38:50 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch }:
|
2007-09-04 11:55:19 +00:00
|
|
|
|
2010-08-06 22:26:25 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-02-12 19:51:26 +00:00
|
|
|
name = "p7zip-${version}";
|
2016-07-19 07:25:35 +00:00
|
|
|
version = "16.02";
|
2015-02-12 19:51:26 +00:00
|
|
|
|
2007-09-04 11:55:19 +00:00
|
|
|
src = fetchurl {
|
2015-02-12 19:51:26 +00:00
|
|
|
url = "mirror://sourceforge/p7zip/p7zip_${version}_src_all.tar.bz2";
|
2016-07-19 07:25:35 +00:00
|
|
|
sha256 = "5eb20ac0e2944f6cb9c2d51dd6c4518941c185347d4089ea89087ffdd6e2341f";
|
2007-09-04 11:55:19 +00:00
|
|
|
};
|
2010-08-06 22:26:25 +00:00
|
|
|
|
2016-12-08 00:38:50 +00:00
|
|
|
patches = [
|
2017-07-03 06:19:20 +00:00
|
|
|
(fetchpatch rec {
|
|
|
|
name = "CVE-2016-9296.patch";
|
|
|
|
url = "https://src.fedoraproject.org/cgit/rpms/p7zip.git/plain/${name}?id=4b3973f6a5d";
|
2017-06-25 21:12:02 +00:00
|
|
|
sha256 = "09wbkzai46bwm8zmplsz0m4jck3qn7snr68i9p1gsih300zidj0m";
|
2016-12-08 00:38:50 +00:00
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-04-07 20:51:23 +00: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
|
|
|
|
'';
|
|
|
|
|
2013-08-15 03:53:43 +00:00
|
|
|
preConfigure = ''
|
|
|
|
makeFlagsArray=(DEST_HOME=$out)
|
|
|
|
buildFlags=all3
|
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
2016-05-26 08:59:55 +00:00
|
|
|
cp makefile.macosx_llvm_64bits makefile.machine
|
2013-08-15 03:53:43 +00:00
|
|
|
'';
|
2007-09-06 20:45:36 +00:00
|
|
|
|
2012-10-05 20:06:35 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-12-17 12:04:59 +00:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2007-09-06 20:45:36 +00:00
|
|
|
meta = {
|
|
|
|
homepage = http://p7zip.sourceforge.net/;
|
|
|
|
description = "A port of the 7-zip archiver";
|
2014-06-19 04:19:00 +00:00
|
|
|
# license = stdenv.lib.licenses.lgpl21Plus; + "unRAR restriction"
|
2009-10-07 11:29:23 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2014-11-05 08:12:35 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.raskin ];
|
2007-09-06 20:45:36 +00:00
|
|
|
};
|
2007-09-04 11:55:19 +00:00
|
|
|
}
|