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

51 lines
1.5 KiB
Nix
Raw Normal View History

2013-03-09 12:30:22 +00:00
{stdenv, fetchurl, unzip}:
let
s = # Generated upstream information
rec {
baseName="zpaq";
2015-02-01 08:16:47 +00:00
version="700";
2013-03-09 12:30:22 +00:00
name="${baseName}-${version}";
2015-02-01 08:16:47 +00:00
hash="1scn7xly1bmx3xr17mn32mqvpvpp53niryrqm7h0xkksmc623z9c";
url="http://mattmahoney.net/dc/zpaq700.zip";
sha256="1scn7xly1bmx3xr17mn32mqvpvpp53niryrqm7h0xkksmc623z9c";
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 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 = {
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";
};
}