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

49 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, unzip }:
2013-10-20 22:30:40 +04:00
let
# Generated upstream information
s = rec {
2013-10-20 22:30:40 +04:00
baseName="zpaqd";
2016-09-26 16:43:49 +03:00
version="715";
2013-10-20 22:30:40 +04:00
name="${baseName}-${version}";
2016-09-26 16:43:49 +03:00
hash="0868lynb45lm79yvx5f10lj5h6bfv0yck8whcls2j080vmk3n7rk";
url="http://mattmahoney.net/dc/zpaqd715.zip";
sha256="0868lynb45lm79yvx5f10lj5h6bfv0yck8whcls2j080vmk3n7rk";
2013-10-20 22:30:40 +04:00
};
compileFlags = stdenv.lib.concatStringsSep " " ([ "-O3" "-DNDEBUG" ]
++ stdenv.lib.optional (stdenv.hostPlatform.isUnix) "-Dunix -pthread"
++ stdenv.lib.optional (!stdenv.hostPlatform.isx86) "-DNOJIT");
2013-10-20 22:30:40 +04:00
in
stdenv.mkDerivation {
inherit (s) name version;
2013-10-20 22:30:40 +04:00
src = fetchurl {
inherit (s) url sha256;
};
2013-10-20 22:30:40 +04:00
sourceRoot = ".";
buildInputs = [ unzip ];
2013-10-20 22:30:40 +04: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 22:30:40 +04:00
'';
2013-10-20 22:30:40 +04: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 07:09:13 +03:00
description = "ZPAQ archive (de)compressor and algorithm development tool";
license = licenses.gpl3Plus ;
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
2013-10-20 22:30:40 +04:00
};
}