2016-12-08 01:38:50 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch }:
|
2007-09-04 13:55:19 +02:00
|
|
|
|
2010-08-07 00:26:25 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2015-02-12 20:51:26 +01:00
|
|
|
name = "p7zip-${version}";
|
2016-07-19 09:25:35 +02:00
|
|
|
version = "16.02";
|
2015-02-12 20:51:26 +01:00
|
|
|
|
2007-09-04 13:55:19 +02:00
|
|
|
src = fetchurl {
|
2015-02-12 20:51:26 +01:00
|
|
|
url = "mirror://sourceforge/p7zip/p7zip_${version}_src_all.tar.bz2";
|
2016-07-19 09:25:35 +02:00
|
|
|
sha256 = "5eb20ac0e2944f6cb9c2d51dd6c4518941c185347d4089ea89087ffdd6e2341f";
|
2007-09-04 13:55:19 +02:00
|
|
|
};
|
2010-08-07 00:26:25 +02:00
|
|
|
|
2016-12-08 01:38:50 +01:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://sources.debian.net/data/main/p/p7zip/16.02+dfsg-2/debian/patches/12-CVE-2016-9296.patch";
|
2016-12-09 08:58:31 +01:00
|
|
|
sha256 = "1i7099h27gmb9dv0lb7jnqfm504gs1c3129r6kvi94yb2gzrzk41";
|
2016-12-08 01:38:50 +01:00
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2013-08-15 05:53:43 +02:00
|
|
|
preConfigure = ''
|
|
|
|
makeFlagsArray=(DEST_HOME=$out)
|
|
|
|
buildFlags=all3
|
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
2016-05-26 10:59:55 +02:00
|
|
|
cp makefile.macosx_llvm_64bits makefile.machine
|
2013-08-15 05:53:43 +02:00
|
|
|
'';
|
2007-09-06 22:45:36 +02:00
|
|
|
|
2012-10-05 22:06:35 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-12-17 13:04:59 +01:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2007-09-06 22:45:36 +02:00
|
|
|
meta = {
|
|
|
|
homepage = http://p7zip.sourceforge.net/;
|
|
|
|
description = "A port of the 7-zip archiver";
|
2014-06-19 06:19:00 +02:00
|
|
|
# license = stdenv.lib.licenses.lgpl21Plus; + "unRAR restriction"
|
2009-10-07 13:29:23 +02:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2014-11-05 09:12:35 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.raskin ];
|
2007-09-06 22:45:36 +02:00
|
|
|
};
|
2007-09-04 13:55:19 +02:00
|
|
|
}
|