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

42 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, perl, unzip }:
stdenv.mkDerivation rec {
name = "zpaq-${version}";
2016-05-06 10:09:34 +01:00
version = "7.13";
src = let
mungedVersion = with stdenv.lib; concatStrings (splitString "." version);
in fetchurl {
2016-05-06 10:09:34 +01:00
sha256 = "06fry12c92nxds2m5cd69h0cpxvp0mxhssagmjiwxpmgn57wy84i";
url = "http://mattmahoney.net/dc/zpaq${mungedVersion}.zip";
2013-03-09 12:30:22 +00:00
};
2013-03-09 12:30:22 +00:00
sourceRoot = ".";
nativeBuildInputs = [ perl /* for pod2man */ ];
buildInputs = [ unzip ];
preBuild = let
CPPFLAGS = with stdenv; ""
+ (lib.optionalString (!isi686 && !isx86_64) "-DNOJIT ")
+ "-Dunix";
CXXFLAGS = with stdenv; ""
+ (lib.optionalString (isi686) "-march=i686 ")
+ (lib.optionalString (isx86_64) "-march=nocona ")
+ "-O3 -mtune=generic -DNDEBUG";
in ''
buildFlagsArray=( "CPPFLAGS=${CPPFLAGS}" "CXXFLAGS=${CXXFLAGS}" )
2013-03-09 12:30:22 +00:00
'';
enableParallelBuilding = true;
installFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
description = "Incremental journaling backup utility and archiver";
homepage = http://mattmahoney.net/dc/zpaq.html;
license = licenses.gpl3Plus ;
maintainers = with maintainers; [ raskin nckx ];
platforms = platforms.linux;
2013-03-09 12:30:22 +00:00
};
}