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

38 lines
1.0 KiB
Nix
Raw Normal View History

2016-12-07 16:38:50 -08:00
{ stdenv, fetchurl, fetchpatch }:
stdenv.mkDerivation rec {
name = "p7zip-${version}";
2016-07-19 00:25:35 -07:00
version = "16.02";
src = fetchurl {
url = "mirror://sourceforge/p7zip/p7zip_${version}_src_all.tar.bz2";
2016-07-19 00:25:35 -07:00
sha256 = "5eb20ac0e2944f6cb9c2d51dd6c4518941c185347d4089ea89087ffdd6e2341f";
};
2016-12-07 16:38:50 -08:00
patches = [
(fetchpatch {
url = "https://sources.debian.net/data/main/p/p7zip/16.02+dfsg-2/debian/patches/12-CVE-2016-9296.patch";
sha256 = "1i7099h27gmb9dv0lb7jnqfm504gs1c3129r6kvi94yb2gzrzk41";
2016-12-07 16:38:50 -08: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
'';
2012-10-05 13:06:35 -07:00
enableParallelBuilding = true;
2016-12-17 04:04:59 -08:00
setupHook = ./setup-hook.sh;
meta = {
homepage = http://p7zip.sourceforge.net/;
description = "A port of the 7-zip archiver";
# license = stdenv.lib.licenses.lgpl21Plus; + "unRAR restriction"
platforms = stdenv.lib.platforms.unix;
2014-11-05 00:12:35 -08:00
maintainers = [ stdenv.lib.maintainers.raskin ];
};
}