percona-xtrabackup_8_0: 8.0.29-22 -> 8.0.34-29
https://docs.percona.com/percona-xtrabackup/8.0/release-notes/8.0/8.0.34-29.0.html
This commit is contained in:
parent
f5892ddac1
commit
4f267a0b77
3 changed files with 7 additions and 8 deletions
|
@ -1,8 +1,8 @@
|
||||||
{ callPackage, ... } @ args:
|
{ callPackage, ... } @ args:
|
||||||
|
|
||||||
callPackage ./generic.nix (args // {
|
callPackage ./generic.nix (args // {
|
||||||
version = "8.0.29-22";
|
version = "8.0.34-29";
|
||||||
sha256 = "sha256-dGpfU+IesAyr2s1AEjfYggOEkMGQ9JdEesu5PtJHNXA=";
|
hash = "sha256-dO5ciIIAnKj2t+fYhrtnY7MvBThoA+SymBzN8H07giM=";
|
||||||
|
|
||||||
# includes https://github.com/Percona-Lab/libkmip.git
|
# includes https://github.com/Percona-Lab/libkmip.git
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, bison, boost, cmake, makeWrapper, pkg-config
|
{ lib, stdenv, fetchFromGitHub, bison, boost, cmake, makeWrapper, pkg-config
|
||||||
, curl, cyrus_sasl, libaio, libedit, libev, libevent, libgcrypt, libgpg-error, lz4
|
, curl, cyrus_sasl, libaio, libedit, libev, libevent, libgcrypt, libgpg-error, lz4
|
||||||
, ncurses, numactl, openssl, protobuf, valgrind, xxd, zlib
|
, ncurses, numactl, openssl, procps, protobuf, valgrind, xxd, zlib
|
||||||
, perlPackages
|
, perlPackages
|
||||||
, version, sha256, fetchSubmodules ? false, extraPatches ? [], extraPostInstall ? "", ...
|
, version, hash, fetchSubmodules ? false, extraPatches ? [], extraPostInstall ? "", ...
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -13,14 +13,14 @@ stdenv.mkDerivation rec {
|
||||||
owner = "percona";
|
owner = "percona";
|
||||||
repo = "percona-xtrabackup";
|
repo = "percona-xtrabackup";
|
||||||
rev = "${pname}-${version}";
|
rev = "${pname}-${version}";
|
||||||
inherit sha256 fetchSubmodules;
|
inherit hash fetchSubmodules;
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ bison boost cmake makeWrapper pkg-config ];
|
nativeBuildInputs = [ bison boost cmake makeWrapper pkg-config ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
(curl.override { inherit openssl; }) cyrus_sasl libaio libedit libevent libev libgcrypt libgpg-error lz4
|
(curl.override { inherit openssl; }) cyrus_sasl libaio libedit libevent libev libgcrypt libgpg-error lz4
|
||||||
ncurses numactl openssl protobuf valgrind xxd zlib
|
ncurses numactl openssl procps protobuf valgrind xxd zlib
|
||||||
] ++ (with perlPackages; [ perl DBI DBDmysql ]);
|
] ++ (with perlPackages; [ perl DBI DBDmysql ]);
|
||||||
|
|
||||||
patches = extraPatches;
|
patches = extraPatches;
|
||||||
|
@ -52,6 +52,6 @@ stdenv.mkDerivation rec {
|
||||||
homepage = "http://www.percona.com/software/percona-xtrabackup";
|
homepage = "http://www.percona.com/software/percona-xtrabackup";
|
||||||
license = licenses.lgpl2;
|
license = licenses.lgpl2;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ izorkin ];
|
maintainers = teams.flyingcircus.members ++ [ maintainers.izorkin ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -11864,7 +11864,6 @@ with pkgs;
|
||||||
percona-xtrabackup = percona-xtrabackup_8_0;
|
percona-xtrabackup = percona-xtrabackup_8_0;
|
||||||
percona-xtrabackup_8_0 = callPackage ../tools/backup/percona-xtrabackup/8_0.nix {
|
percona-xtrabackup_8_0 = callPackage ../tools/backup/percona-xtrabackup/8_0.nix {
|
||||||
boost = boost177;
|
boost = boost177;
|
||||||
openssl = openssl_1_1;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
pick = callPackage ../tools/misc/pick { };
|
pick = callPackage ../tools/misc/pick { };
|
||||||
|
|
Loading…
Reference in a new issue