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

52 lines
1.4 KiB
Nix
Raw Normal View History

2015-02-25 03:15:51 +00:00
{ stdenv, fetchurl, unzip }:
2013-10-20 18:30:40 +00:00
let
s = # Generated upstream information
rec {
baseName="zpaqd";
version="7.08";
2013-10-20 18:30:40 +00:00
name="${baseName}-${version}";
url="http://mattmahoney.net/dc/zpaqd708.zip";
sha256="18mkfz7v73rp5l712107m3x5a3v6y0vjf47a6s3di8x416kbcp2a";
2013-10-20 18:30:40 +00:00
};
2015-02-25 03:15:51 +00:00
isUnix = with stdenv; isLinux || isGNU || isDarwin || isFreeBSD || isOpenBSD;
2013-10-20 18:30:40 +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-10-20 18:30:40 +00:00
;
in
stdenv.mkDerivation {
inherit (s) name version;
2013-10-20 18:30:40 +00:00
src = fetchurl {
inherit (s) url sha256;
};
2013-10-20 18:30:40 +00:00
sourceRoot = ".";
buildInputs = [ unzip ];
2013-10-20 18:30:40 +00:00
buildPhase = ''
g++ ${compileFlags} -fPIC --shared libzpaq.cpp -o libzpaq.so
g++ ${compileFlags} -L. -L"$out/lib" -lzpaq zpaqd.cpp -o zpaqd
2013-10-20 18:30:40 +00:00
'';
2013-10-20 18:30:40 +00:00
installPhase = ''
mkdir -p "$out"/{bin,include,lib,share/doc/zpaq}
cp libzpaq.so "$out/lib"
cp zpaqd "$out/bin"
cp libzpaq.h "$out/include"
cp readme_zpaqd.txt "$out/share/doc/zpaq"
'';
meta = with stdenv.lib; {
2015-12-31 04:09:13 +00:00
description = "ZPAQ archive (de)compressor and algorithm development tool";
license = licenses.gpl3Plus ;
maintainers = with maintainers; [ raskin nckx ];
platforms = platforms.linux;
2013-10-20 18:30:40 +00:00
};
}