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

55 lines
1.5 KiB
Nix
Raw Normal View History

2015-02-25 03:15:51 +00:00
{ stdenv, fetchurl, unzip }:
2013-03-09 12:30:22 +00:00
let
s = # Generated upstream information
rec {
baseName="zpaq";
2015-05-10 08:55:21 +00:00
version="705";
2013-03-09 12:30:22 +00:00
name="${baseName}-${version}";
2015-05-10 08:55:21 +00:00
hash="0d1knq4f6693nvbwjx4wznb45hm4zyn4k88xvhynyk0dcbiy7ayq";
url="http://mattmahoney.net/dc/zpaq705.zip";
sha256="0d1knq4f6693nvbwjx4wznb45hm4zyn4k88xvhynyk0dcbiy7ayq";
2013-03-09 12:30:22 +00:00
};
2015-02-25 03:15:51 +00:00
isUnix = with stdenv; isLinux || isGNU || isDarwin || isFreeBSD || isOpenBSD;
2013-03-09 12:30:22 +00:00
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"
2013-03-09 12:30:22 +00:00
;
in
stdenv.mkDerivation {
inherit (s) name version;
2013-03-09 12:30:22 +00:00
src = fetchurl {
inherit (s) url sha256;
};
2013-03-09 12:30:22 +00:00
sourceRoot = ".";
buildInputs = [ unzip ];
2013-03-09 12:30:22 +00:00
buildPhase = ''
g++ ${compileFlags} -fPIC --shared libzpaq.cpp -o libzpaq.so
g++ ${compileFlags} -L. -L"$out/lib" -lzpaq zpaq.cpp -o zpaq
2013-03-09 12:30:22 +00:00
'';
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 18:30:40 +00: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 = with stdenv.lib; {
2013-03-09 12:30:22 +00:00
inherit (s) version;
description = "Incremental journaling backup utility and archiver";
license = licenses.gpl3Plus ;
maintainers = with maintainers; [ raskin nckx ];
platforms = platforms.linux;
2013-03-09 12:30:22 +00:00
homepage = "http://mattmahoney.net/dc/zpaq.html";
};
}