2010-08-07 00:26:25 +02:00
|
|
|
{ stdenv, fetchurl }:
|
2007-09-04 13:55:19 +02:00
|
|
|
|
2015-02-12 20:51:26 +01:00
|
|
|
let
|
|
|
|
version = "9.38";
|
|
|
|
in
|
2010-08-07 00:26:25 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2015-02-12 20:51:26 +01:00
|
|
|
name = "p7zip-${version}";
|
|
|
|
|
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";
|
|
|
|
sha256 = "0mxribb9a3lz3bifz6002hg7vyy8h9piinypian533hw8qvswfx7";
|
2007-09-04 13:55:19 +02:00
|
|
|
};
|
2010-08-07 00:26:25 +02:00
|
|
|
|
2013-08-15 05:53:43 +02:00
|
|
|
preConfigure = ''
|
|
|
|
makeFlagsArray=(DEST_HOME=$out)
|
|
|
|
buildFlags=all3
|
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
cp makefile.macosx_64bits makefile.machine
|
|
|
|
'';
|
2007-09-06 22:45:36 +02:00
|
|
|
|
2012-10-05 22:06:35 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
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
|
|
|
}
|