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

29 lines
780 B
Nix
Raw Normal View History

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