2013-03-09 12:30:22 +00:00
|
|
|
{stdenv, fetchurl, unzip}:
|
|
|
|
let
|
|
|
|
s = # Generated upstream information
|
|
|
|
rec {
|
|
|
|
baseName="zpaq";
|
2014-12-21 08:14:06 +00:00
|
|
|
version="660";
|
2013-03-09 12:30:22 +00:00
|
|
|
name="${baseName}-${version}";
|
2014-12-21 08:14:06 +00:00
|
|
|
hash="1p6b56zf676bkfc20lxhjh9bsgh92z6bln7b0kxibh8s8aa7vzjq";
|
|
|
|
url="http://mattmahoney.net/dc/zpaq660.zip";
|
|
|
|
sha256="1p6b56zf676bkfc20lxhjh9bsgh92z6bln7b0kxibh8s8aa7vzjq";
|
2013-03-09 12:30:22 +00:00
|
|
|
};
|
|
|
|
buildInputs = [
|
|
|
|
unzip
|
|
|
|
];
|
|
|
|
isUnix = stdenv.isLinux || stdenv.isGNU || stdenv.isDarwin || stdenv.isBSD;
|
|
|
|
isx86 = stdenv.isi686 || stdenv.isx86_64;
|
|
|
|
compileFlags = ""
|
|
|
|
+ (stdenv.lib.optionalString isUnix " -Dunix -pthread ")
|
|
|
|
+ (stdenv.lib.optionalString (!isx86) " -DNOJIT ")
|
|
|
|
+ " -DNDEBUG "
|
|
|
|
+ " -fPIC "
|
|
|
|
;
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit (s) name version;
|
|
|
|
inherit buildInputs;
|
|
|
|
src = fetchurl {
|
|
|
|
inherit (s) url sha256;
|
|
|
|
};
|
|
|
|
sourceRoot = ".";
|
|
|
|
buildPhase = ''
|
2014-12-21 08:14:06 +00:00
|
|
|
g++ -O3 -march=native -Dunix libzpaq.cpp -pthread --shared -o libzpaq.so -fPIC
|
|
|
|
g++ -O3 -march=native -Dunix zpaq.cpp -lzpaq -L. -L"$out/lib" -pthread -o zpaq
|
2013-03-09 12:30:22 +00:00
|
|
|
'';
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p "$out"/{bin,include,lib,share/doc/zpaq}
|
|
|
|
cp libzpaq.so "$out/lib"
|
2013-10-20 19:30:40 +01:00
|
|
|
cp zpaq "$out/bin"
|
2014-12-21 08:14:06 +00:00
|
|
|
cp libzpaq.h "$out/include"
|
2013-03-09 12:30:22 +00:00
|
|
|
cp readme.txt "$out/share/doc/zpaq"
|
|
|
|
'';
|
|
|
|
meta = {
|
|
|
|
inherit (s) version;
|
|
|
|
description = ''An archiver with backward compatibility of versions for decompression'';
|
|
|
|
license = stdenv.lib.licenses.gpl3Plus ;
|
|
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
homepage = "http://mattmahoney.net/dc/zpaq.html";
|
|
|
|
};
|
|
|
|
}
|