zpaq: 705 -> 706
Changes: - Fixes handling of some corrupted archives. - Conforms to new spec zpaq205.pdf. - New man page. - Add Makefile [and adapt Nix expression to use it].
This commit is contained in:
@@ -1,23 +1,14 @@
|
|||||||
{ stdenv, fetchurl, unzip }:
|
{ stdenv, fetchurl, perl, unzip }:
|
||||||
let
|
let
|
||||||
s = # Generated upstream information
|
s = # Generated upstream information
|
||||||
rec {
|
rec {
|
||||||
baseName="zpaq";
|
baseName="zpaq";
|
||||||
version="705";
|
version="706";
|
||||||
name="${baseName}-${version}";
|
name="${baseName}-${version}";
|
||||||
hash="0d1knq4f6693nvbwjx4wznb45hm4zyn4k88xvhynyk0dcbiy7ayq";
|
hash="0wn5hs02aac61rjbba3s6wibyk73f1mfcbqnf34hcpyj2gl5i59k";
|
||||||
url="http://mattmahoney.net/dc/zpaq705.zip";
|
url="http://mattmahoney.net/dc/zpaq706.zip";
|
||||||
sha256="0d1knq4f6693nvbwjx4wznb45hm4zyn4k88xvhynyk0dcbiy7ayq";
|
sha256="0wn5hs02aac61rjbba3s6wibyk73f1mfcbqnf34hcpyj2gl5i59k";
|
||||||
};
|
};
|
||||||
isUnix = with stdenv; isLinux || isGNU || isDarwin || isFreeBSD || isOpenBSD;
|
|
||||||
isx86 = stdenv.isi686 || stdenv.isx86_64;
|
|
||||||
compileFlags = with stdenv; ""
|
|
||||||
+ (lib.optionalString (isUnix) " -Dunix -pthread")
|
|
||||||
+ (lib.optionalString (isi686) " -march=i686")
|
|
||||||
+ (lib.optionalString (isx86_64) " -march=nocona")
|
|
||||||
+ (lib.optionalString (!isx86) " -DNOJIT")
|
|
||||||
+ " -O3 -mtune=generic -DNDEBUG"
|
|
||||||
;
|
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
inherit (s) name version;
|
inherit (s) name version;
|
||||||
@@ -28,20 +19,24 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
sourceRoot = ".";
|
sourceRoot = ".";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ perl /* for pod2man */ ];
|
||||||
buildInputs = [ unzip ];
|
buildInputs = [ unzip ];
|
||||||
|
|
||||||
buildPhase = ''
|
preBuild = let
|
||||||
g++ ${compileFlags} -fPIC --shared libzpaq.cpp -o libzpaq.so
|
CPPFLAGS = with stdenv; ""
|
||||||
g++ ${compileFlags} -L. -L"$out/lib" -lzpaq zpaq.cpp -o zpaq
|
+ (lib.optionalString (!isi686 && !isx86_64) "-DNOJIT ")
|
||||||
|
+ "-Dunix";
|
||||||
|
CXXFLAGS = with stdenv; ""
|
||||||
|
+ (lib.optionalString (isi686) "-march=i686 ")
|
||||||
|
+ (lib.optionalString (isx86_64) "-march=nocona ")
|
||||||
|
+ "-O3 -mtune=generic -DNDEBUG";
|
||||||
|
in ''
|
||||||
|
buildFlagsArray=( "CPPFLAGS=${CPPFLAGS}" "CXXFLAGS=${CXXFLAGS}" )
|
||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
enableParallelBuilding = true;
|
||||||
mkdir -p "$out"/{bin,include,lib,share/doc/zpaq}
|
|
||||||
cp libzpaq.so "$out/lib"
|
installFlags = [ "PREFIX=$(out)" ];
|
||||||
cp zpaq "$out/bin"
|
|
||||||
cp libzpaq.h "$out/include"
|
|
||||||
cp readme.txt "$out/share/doc/zpaq"
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
inherit (s) version;
|
inherit (s) version;
|
||||||
|
|||||||
Reference in New Issue
Block a user