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

36 lines
1,019 B
Nix
Raw Normal View History

2016-12-08 01:38:50 +01:00
{ stdenv, fetchurl, fetchpatch }:
stdenv.mkDerivation rec {
name = "p7zip-${version}";
2016-07-19 09:25:35 +02:00
version = "16.02";
src = fetchurl {
url = "mirror://sourceforge/p7zip/p7zip_${version}_src_all.tar.bz2";
2016-07-19 09:25:35 +02:00
sha256 = "5eb20ac0e2944f6cb9c2d51dd6c4518941c185347d4089ea89087ffdd6e2341f";
};
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";
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
'';
2012-10-05 22:06:35 +02:00
enableParallelBuilding = true;
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 09:12:35 +01:00
maintainers = [ stdenv.lib.maintainers.raskin ];
};
}