2010-08-06 23:26:25 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2007-09-04 12:55:19 +01:00
|
|
|
|
2015-02-12 19:51:26 +00:00
|
|
|
let
|
2016-03-25 06:00:38 +00:00
|
|
|
version = "15.14.1";
|
2015-02-12 19:51:26 +00:00
|
|
|
in
|
2010-08-06 23:26:25 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-02-12 19:51:26 +00:00
|
|
|
name = "p7zip-${version}";
|
|
|
|
|
2007-09-04 12:55:19 +01:00
|
|
|
src = fetchurl {
|
2015-02-12 19:51:26 +00:00
|
|
|
url = "mirror://sourceforge/p7zip/p7zip_${version}_src_all.tar.bz2";
|
2016-03-25 06:00:38 +00:00
|
|
|
sha256 = "1m15iwglyjpiw82m7dbpykz8s55imch34w20w09l34116vdb97b9";
|
2007-09-04 12:55:19 +01:00
|
|
|
};
|
2010-08-06 23:26:25 +01:00
|
|
|
|
2013-08-15 04:53:43 +01:00
|
|
|
preConfigure = ''
|
|
|
|
makeFlagsArray=(DEST_HOME=$out)
|
|
|
|
buildFlags=all3
|
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
cp makefile.macosx_64bits makefile.machine
|
|
|
|
'';
|
2007-09-06 21:45:36 +01:00
|
|
|
|
2012-10-05 21:06:35 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2007-09-06 21:45:36 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://p7zip.sourceforge.net/;
|
|
|
|
description = "A port of the 7-zip archiver";
|
2014-06-19 05:19:00 +01:00
|
|
|
# license = stdenv.lib.licenses.lgpl21Plus; + "unRAR restriction"
|
2009-10-07 12:29:23 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2014-11-05 08:12:35 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.raskin ];
|
2007-09-06 21:45:36 +01:00
|
|
|
};
|
2007-09-04 12:55:19 +01:00
|
|
|
}
|