summaryrefslogtreecommitdiffstats
path: root/pkgs/servers/sql/percona-server/8_4.nix
blob: 50b6d2377dd395ba268d75b8d88385fcb0968215 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
{
  lib,
  stdenv,
  fetchurl,
  gitUpdater,
  bison,
  cmake,
  pkg-config,
  boost,
  icu,
  libedit,
  libevent,
  lz4,
  ncurses,
  openssl,
  perl,
  protobuf,
  re2,
  readline,
  zlib,
  zstd,
  libfido2,
  numactl,
  cctools,
  developer_cmds,
  libtirpc,
  rpcsvc-proto,
  curl,
  DarwinTools,
  nixosTests,
  coreutils,
  procps,
  gnused,
  gnugrep,
  hostname,
  makeWrapper,
  systemd,
  # Percona-specific deps
  cyrus_sasl,
  gnumake,
  openldap,
  # optional: different malloc implementations
  withJemalloc ? false,
  withTcmalloc ? false,
  jemalloc,
  gperftools,
}:

assert !(withJemalloc && withTcmalloc);

let
  # baseline, used for building both client and server
  common = finalAttrs: {
    version = "8.4.10-10";

    src = fetchurl {
      url = "https://downloads.percona.com/downloads/Percona-Server-${lib.versions.majorMinor finalAttrs.version}/Percona-Server-${finalAttrs.version}/source/tarball/percona-server-${finalAttrs.version}.tar.gz";
      hash = "sha256-IjHeflYc3AMd6hNXDEYegXm14wjyt9hX3gIVtOQzauU=";
    };

    nativeBuildInputs = [
      bison
      cmake
      pkg-config
      makeWrapper
      # required for scripts/CMakeLists.txt
      coreutils
      gnugrep
      procps
    ]
    ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ rpcsvc-proto ];

    patches = [
      ./no-force-outline-atomics.patch # Do not force compilers to turn on -moutline-atomics switch
      ./coredumper-explicitly-import-unistd.patch # fix build on aarch64-linux
    ];

    ## NOTE: MySQL upstream frequently twiddles the invocations of libtool. When updating, you might proactively grep for libtool references.
    postPatch = ''
      substituteInPlace cmake/libutils.cmake --replace /usr/bin/libtool libtool
      substituteInPlace cmake/os/Darwin.cmake --replace /usr/bin/libtool libtool
      # The rocksdb setup script is called with `env -i` and cannot find anything in PATH.
      patchShebangs storage/rocksdb/get_rocksdb_files.sh
      substituteInPlace storage/rocksdb/get_rocksdb_files.sh --replace mktemp ${coreutils}/bin/mktemp
      substituteInPlace storage/rocksdb/get_rocksdb_files.sh --replace "rm $MKFILE" "${coreutils}/bin/rm $MKFILE"
      substituteInPlace storage/rocksdb/get_rocksdb_files.sh --replace "make --" "${gnumake}/bin/make --"
    '';

    buildInputs = [
      boost
      (curl.override { inherit openssl; })
      icu
      libedit
      libevent
      lz4
      ncurses
      openssl
      protobuf
      re2
      readline
      zlib
      zstd
      libfido2
      openldap
      perl
      cyrus_sasl
    ]
    ++ lib.optionals stdenv.hostPlatform.isLinux [
      numactl
      libtirpc
      systemd
    ]
    ++ lib.optionals stdenv.hostPlatform.isDarwin [
      cctools
      developer_cmds
      DarwinTools
    ]
    ++ lib.optional (stdenv.hostPlatform.isLinux && withJemalloc) jemalloc
    ++ lib.optional (stdenv.hostPlatform.isLinux && withTcmalloc) gperftools;

    outputs = [
      "out"
      "static"
      "man"
    ];

    cmakeFlags = [
      # Percona-specific flags.
      "-DPORTABLE=1"
      "-DWITH_LDAP=system"
      "-DROCKSDB_DISABLE_AVX2=1"
      "-DROCKSDB_DISABLE_MARCH_NATIVE=1"

      # Flags taken from mysql package.
      "-DFORCE_UNSUPPORTED_COMPILER=1" # To configure on Darwin.
      "-DWITH_ROUTER=OFF" # It may be packaged separately.
      "-DWITH_SYSTEM_LIBS=ON"
      "-DWITH_UNIT_TESTS=OFF"
      "-DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock"
      "-DMYSQL_DATADIR=/var/lib/mysql"
      "-DINSTALL_INFODIR=share/mysql/docs"
      "-DINSTALL_MANDIR=share/man"
      "-DINSTALL_PLUGINDIR=lib/mysql/plugin"
      "-DINSTALL_INCLUDEDIR=include/mysql"
      "-DINSTALL_DOCREADMEDIR=share/mysql"
      "-DINSTALL_SUPPORTFILESDIR=share/mysql"
      "-DINSTALL_MYSQLSHAREDIR=share/mysql"
      "-DINSTALL_MYSQLTESTDIR="
      "-DINSTALL_DOCDIR=share/mysql/docs"
      "-DINSTALL_SHAREDIR=share/mysql"
    ]
    ++ lib.optionals stdenv.hostPlatform.isLinux [
      "-DWITH_SYSTEMD=1"
      "-DWITH_SYSTEMD_DEBUG=1"
    ]
    ++ lib.optional (stdenv.hostPlatform.isLinux && withJemalloc) "-DWITH_JEMALLOC=1"
    ++ lib.optional (stdenv.hostPlatform.isLinux && withTcmalloc) "-DWITH_TCMALLOC=1";

    postInstall = ''
      moveToOutput "lib/*.a" $static
      so=${stdenv.hostPlatform.extensions.sharedLibrary}
      ln -s libperconaserverclient$so $out/lib/libmysqlclient_r$so
    ''
    + lib.optionalString stdenv.hostPlatform.isLinux ''
      # support files are installed to an incorrect path `nix/store`<systemd-store-path>`,
      # see cmake/systemd.cmake. These are: service units, tmpfiles rules
      # But we do not need these anyways.
      rm -r "$out"/nix/
    '';

    meta = {
      homepage = "https://www.percona.com/software/mysql-database/percona-server";
      description = ''
        A free, fully compatible, enhanced, open source drop-in replacement for
        MySQL® that provides superior performance, scalability and instrumentation.
        Long-term support release.
      '';
      license = lib.licenses.gpl2Only;
      maintainers = [
        lib.maintainers.leona
        lib.maintainers.osnyx
      ];
      platforms = lib.platforms.unix;
    };

    passthru = {
      mysqlVersion = lib.versions.majorMinor finalAttrs.version;
    };

  };
  client = stdenv.mkDerivation (
    finalAttrs:
    let
      common' = common finalAttrs;
    in
    common'
    // {
      pname = "percona-client";
      cmakeFlags = common'.cmakeFlags ++ [
        "-DWITHOUT_SERVER=ON"
        "-DINSTALL_MYSQLSHAREDIR=share/mysql-client"
      ];

      meta = common'.meta // {
        mainProgram = "mysql";
      };

    }
  );

in
stdenv.mkDerivation (
  finalAttrs:
  let
    common' = common finalAttrs;
  in
  common'
  // {
    pname = "percona-server";

    postInstall =
      common'.postInstall
      + ''

        wrapProgram $out/bin/mysqld_safe --prefix PATH : ${
          lib.makeBinPath [
            coreutils
            procps
            gnugrep
            gnused
            hostname
          ]
        }
        wrapProgram $out/bin/mysql_config --prefix PATH : ${
          lib.makeBinPath [
            coreutils
            gnused
          ]
        }
        wrapProgram $out/bin/ps_mysqld_helper --prefix PATH : ${
          lib.makeBinPath [
            coreutils
            gnugrep
          ]
        }
        wrapProgram $out/bin/ps-admin --prefix PATH : ${
          lib.makeBinPath [
            coreutils
            gnugrep
          ]
        }
      ''
      + lib.optionalString stdenv.hostPlatform.isDarwin ''
        wrapProgram $out/bin/mysqld_multi --prefix PATH : ${
          lib.makeBinPath [
            coreutils
            gnugrep
          ]
        }
      '';

    meta = common'.meta // {
      mainProgram = "mysqld";
    };

    passthru = {
      inherit client;
      connector-c = finalAttrs.finalPackage;
      server = finalAttrs.finalPackage;
      inherit (common'.passthru) mysqlVersion;
      tests.percona-server =
        nixosTests.mysql."percona-server_${lib.versions.major finalAttrs.version}_${lib.versions.minor finalAttrs.version}";
      updateScript = gitUpdater {
        url = "https://github.com/percona/percona-server";
        rev-prefix = "Percona-Server-";
        allowedVersions = "${lib.versions.major finalAttrs.version}\\.${lib.versions.minor finalAttrs.version}\\..+";
      };
    };
  }
)