8 stdenv.mkDerivation rec {
12 src = fetchFromGitHub {
16 sha256 = "0v44rlg9gvwc4ggr2lhcqll8ppal3dk7zsg5bqwcc5lg3ynk2pz4";
25 ] ++ lib.optional (!stdenv.hostPlatform.isi686 && !stdenv.hostPlatform.isx86_64) "-DNOJIT";
31 enableParallelBuilding = true;
33 makeFlags = [ "CXX=${stdenv.cc.targetPrefix}c++" ];
34 installFlags = [ "PREFIX=$(out)" ];
37 description = "Incremental journaling backup utility and archiver";
38 homepage = "http://mattmahoney.net/dc/zpaq.html";
39 license = licenses.gpl3Plus;
40 maintainers = with maintainers; [ raskin ];
41 platforms = platforms.unix;