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

28 lines
734 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2012-10-05 22:06:35 +02:00
name = "p7zip-9.20.1";
src = fetchurl {
2012-10-05 22:06:35 +02:00
url = mirror://sourceforge/p7zip/p7zip_9.20.1_src_all.tar.bz2;
sha256 = "10j7rc1nzdp7vvcpc3340yi3qw7abby4szv8zkwh10d0zizpwma9";
};
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
'';
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 ];
};
}