f0397a3180
"perfomance" -> "performance"
43 lines
1,020 B
Nix
43 lines
1,020 B
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, cmake, pkg-config, sphinx
|
|
, glib , pcre
|
|
, libmysqlclient, libressl
|
|
, zlib, zstd
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mydumper";
|
|
version = "0.14.3-1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mydumper";
|
|
repo = "mydumper";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-qyJGnrBOElQ3s2VoOWfW1luacd33haanmzKidMBgCpc=";
|
|
};
|
|
|
|
outputs = [ "out" "doc" "man" ];
|
|
|
|
nativeBuildInputs = [ cmake pkg-config sphinx ];
|
|
|
|
buildInputs = [
|
|
glib pcre
|
|
libmysqlclient libressl
|
|
zlib zstd
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_SKIP_BUILD_RPATH=ON"
|
|
"-DMYSQL_INCLUDE_DIR=${lib.getDev libmysqlclient}/include/mysql"
|
|
"-DWITH_ZSTD=ON"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "High-performance MySQL backup tool";
|
|
homepage = "https://github.com/maxbube/mydumper";
|
|
changelog = "https://github.com/mydumper/mydumper/releases/tag/v${version}";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ izorkin ];
|
|
};
|
|
}
|