about summary refs log tree commit diff
path: root/pkgs/tools/backup/percona-xtrabackup/lts.nix
blob: fbb4c045d776f4625042a81dc57808c802a7b397 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ callPackage, ... } @ args:

callPackage ./generic.nix (args // {
  version = "8.0.35-30";
  hash = "sha256-yagqBKU057Gk5pEyT2R3c5DtxNG/+TSPenFgbxUiHPo=";

  # includes https://github.com/Percona-Lab/libkmip.git
  fetchSubmodules = true;

  extraPatches = [
    ./abi-check.patch
  ];

  extraPostInstall = ''
    rm -r "$out"/docs
  '';
})