2015-02-25 04:15:51 +01:00
|
|
|
{ stdenv, fetchurl, unzip }:
|
2013-03-09 13:30:22 +01:00
|
|
|
let
|
|
|
|
s = # Generated upstream information
|
|
|
|
rec {
|
|
|
|
baseName="zpaq";
|
2015-05-10 10:55:21 +02:00
|
|
|
version="705";
|
2013-03-09 13:30:22 +01:00
|
|
|
name="${baseName}-${version}";
|
2015-05-10 10:55:21 +02:00
|
|
|
hash="0d1knq4f6693nvbwjx4wznb45hm4zyn4k88xvhynyk0dcbiy7ayq";
|
|
|
|
url="http://mattmahoney.net/dc/zpaq705.zip";
|
|
|
|
sha256="0d1knq4f6693nvbwjx4wznb45hm4zyn4k88xvhynyk0dcbiy7ayq";
|
2013-03-09 13:30:22 +01:00
|
|
|
};
|
2015-02-25 04:15:51 +01:00
|
|
|
isUnix = with stdenv; isLinux || isGNU || isDarwin || isFreeBSD || isOpenBSD;
|
2013-03-09 13:30:22 +01:00
|
|
|
isx86 = stdenv.isi686 || stdenv.isx86_64;
|
2015-12-31 04:36:54 +01:00
|
|
|
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"
|
2013-03-09 13:30:22 +01:00
|
|
|
;
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit (s) name version;
|
2015-12-31 04:50:57 +01:00
|
|
|
|
2013-03-09 13:30:22 +01:00
|
|
|
src = fetchurl {
|
|
|
|
inherit (s) url sha256;
|
|
|
|
};
|
2015-12-31 04:50:57 +01:00
|
|
|
|
2013-03-09 13:30:22 +01:00
|
|
|
sourceRoot = ".";
|
2015-12-31 04:50:57 +01:00
|
|
|
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
|
2013-03-09 13:30:22 +01:00
|
|
|
buildPhase = ''
|
2015-12-31 04:36:54 +01:00
|
|
|
g++ ${compileFlags} -fPIC --shared libzpaq.cpp -o libzpaq.so
|
|
|
|
g++ ${compileFlags} -L. -L"$out/lib" -lzpaq zpaq.cpp -o zpaq
|
2013-03-09 13:30:22 +01:00
|
|
|
'';
|
2015-12-31 04:50:57 +01:00
|
|
|
|
2013-03-09 13:30:22 +01:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p "$out"/{bin,include,lib,share/doc/zpaq}
|
|
|
|
cp libzpaq.so "$out/lib"
|
2013-10-20 20:30:40 +02:00
|
|
|
cp zpaq "$out/bin"
|
2014-12-21 09:14:06 +01:00
|
|
|
cp libzpaq.h "$out/include"
|
2013-03-09 13:30:22 +01:00
|
|
|
cp readme.txt "$out/share/doc/zpaq"
|
|
|
|
'';
|
2015-12-31 04:50:57 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2013-03-09 13:30:22 +01:00
|
|
|
inherit (s) version;
|
2015-12-31 04:50:57 +01:00
|
|
|
description = "Incremental journaling backup utility and archiver";
|
|
|
|
license = licenses.gpl3Plus ;
|
|
|
|
maintainers = with maintainers; [ raskin nckx ];
|
|
|
|
platforms = platforms.linux;
|
2013-03-09 13:30:22 +01:00
|
|
|
homepage = "http://mattmahoney.net/dc/zpaq.html";
|
|
|
|
};
|
|
|
|
}
|