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

31 lines
772 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
let
2016-03-25 06:00:38 +00:00
version = "15.14.1";
in
stdenv.mkDerivation rec {
name = "p7zip-${version}";
src = fetchurl {
url = "mirror://sourceforge/p7zip/p7zip_${version}_src_all.tar.bz2";
2016-03-25 06:00:38 +00:00
sha256 = "1m15iwglyjpiw82m7dbpykz8s55imch34w20w09l34116vdb97b9";
};
2013-08-15 03:53:43 +00:00
preConfigure = ''
makeFlagsArray=(DEST_HOME=$out)
buildFlags=all3
'' + stdenv.lib.optionalString stdenv.isDarwin ''
cp makefile.macosx_64bits makefile.machine
'';
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 ];
};
}