Commit 4f267a0b authored by Tobias Stenzel's avatar Tobias Stenzel
Browse files
parent f5892dda
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ callPackage, ... } @ args:

callPackage ./generic.nix (args // {
  version = "8.0.29-22";
  sha256 = "sha256-dGpfU+IesAyr2s1AEjfYggOEkMGQ9JdEesu5PtJHNXA=";
  version = "8.0.34-29";
  hash = "sha256-dO5ciIIAnKj2t+fYhrtnY7MvBThoA+SymBzN8H07giM=";

  # includes https://github.com/Percona-Lab/libkmip.git
  fetchSubmodules = true;
+5 −5
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, bison, boost, cmake, makeWrapper, pkg-config
, 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
, version, sha256, fetchSubmodules ? false, extraPatches ? [], extraPostInstall ? "", ...
, version, hash, fetchSubmodules ? false, extraPatches ? [], extraPostInstall ? "", ...
}:

stdenv.mkDerivation rec {
@@ -13,14 +13,14 @@ stdenv.mkDerivation rec {
    owner = "percona";
    repo = "percona-xtrabackup";
    rev = "${pname}-${version}";
    inherit sha256 fetchSubmodules;
    inherit hash fetchSubmodules;
  };

  nativeBuildInputs = [ bison boost cmake makeWrapper pkg-config ];

  buildInputs = [
    (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 ]);

  patches = extraPatches;
@@ -52,6 +52,6 @@ stdenv.mkDerivation rec {
    homepage = "http://www.percona.com/software/percona-xtrabackup";
    license = licenses.lgpl2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ izorkin ];
    maintainers = teams.flyingcircus.members ++ [ maintainers.izorkin ];
  };
}
+0 −1
Original line number Diff line number Diff line
@@ -11864,7 +11864,6 @@ with pkgs;
  percona-xtrabackup = percona-xtrabackup_8_0;
  percona-xtrabackup_8_0 = callPackage ../tools/backup/percona-xtrabackup/8_0.nix {
    boost = boost177;
    openssl = openssl_1_1;
  };
  pick = callPackage ../tools/misc/pick { };