mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-31 18:15:54 +00:00
mysql-shell{,_8,-innovation}: format with nixfmt (#358604)
This commit is contained in:
commit
51fcc9d335
@ -1,37 +1,42 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, pkg-config
|
||||
, cmake
|
||||
, fetchurl
|
||||
, git
|
||||
, cctools
|
||||
, darwin
|
||||
, makeWrapper
|
||||
, bison
|
||||
, openssl
|
||||
, protobuf
|
||||
, curl
|
||||
, zlib
|
||||
, libssh
|
||||
, zstd
|
||||
, lz4
|
||||
, readline
|
||||
, libtirpc
|
||||
, rpcsvc-proto
|
||||
, libedit
|
||||
, libevent
|
||||
, icu
|
||||
, re2
|
||||
, ncurses
|
||||
, libfido2
|
||||
, python3
|
||||
, cyrus_sasl
|
||||
, openldap
|
||||
, antlr
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
pkg-config,
|
||||
cmake,
|
||||
fetchurl,
|
||||
git,
|
||||
cctools,
|
||||
darwin,
|
||||
makeWrapper,
|
||||
bison,
|
||||
openssl,
|
||||
protobuf,
|
||||
curl,
|
||||
zlib,
|
||||
libssh,
|
||||
zstd,
|
||||
lz4,
|
||||
readline,
|
||||
libtirpc,
|
||||
rpcsvc-proto,
|
||||
libedit,
|
||||
libevent,
|
||||
icu,
|
||||
re2,
|
||||
ncurses,
|
||||
libfido2,
|
||||
python3,
|
||||
cyrus_sasl,
|
||||
openldap,
|
||||
antlr,
|
||||
}:
|
||||
|
||||
let
|
||||
pythonDeps = with python3.pkgs; [ certifi paramiko pyyaml ];
|
||||
pythonDeps = with python3.pkgs; [
|
||||
certifi
|
||||
paramiko
|
||||
pyyaml
|
||||
];
|
||||
|
||||
mysqlShellVersion = "8.4.3";
|
||||
mysqlServerVersion = "8.4.3";
|
||||
@ -70,32 +75,44 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
substituteInPlace cmake/libutils.cmake --replace-fail /usr/bin/libtool libtool
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ pkg-config cmake git bison makeWrapper ]
|
||||
nativeBuildInputs =
|
||||
[
|
||||
pkg-config
|
||||
cmake
|
||||
git
|
||||
bison
|
||||
makeWrapper
|
||||
]
|
||||
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ rpcsvc-proto ]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [ cctools darwin.DarwinTools ];
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
cctools
|
||||
darwin.DarwinTools
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
curl
|
||||
libedit
|
||||
libssh
|
||||
lz4
|
||||
openssl
|
||||
protobuf
|
||||
readline
|
||||
zlib
|
||||
zstd
|
||||
libevent
|
||||
icu
|
||||
re2
|
||||
ncurses
|
||||
libfido2
|
||||
cyrus_sasl
|
||||
openldap
|
||||
python3
|
||||
antlr.runtime.cpp
|
||||
] ++ pythonDeps
|
||||
++ lib.optionals stdenv.hostPlatform.isLinux [ libtirpc ]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.libutil ];
|
||||
buildInputs =
|
||||
[
|
||||
curl
|
||||
libedit
|
||||
libssh
|
||||
lz4
|
||||
openssl
|
||||
protobuf
|
||||
readline
|
||||
zlib
|
||||
zstd
|
||||
libevent
|
||||
icu
|
||||
re2
|
||||
ncurses
|
||||
libfido2
|
||||
cyrus_sasl
|
||||
openldap
|
||||
python3
|
||||
antlr.runtime.cpp
|
||||
]
|
||||
++ pythonDeps
|
||||
++ lib.optionals stdenv.hostPlatform.isLinux [ libtirpc ]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.libutil ];
|
||||
|
||||
preConfigure = ''
|
||||
# Build MySQL
|
||||
|
@ -1,37 +1,42 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, pkg-config
|
||||
, cmake
|
||||
, fetchurl
|
||||
, git
|
||||
, cctools
|
||||
, darwin
|
||||
, makeWrapper
|
||||
, bison
|
||||
, openssl
|
||||
, protobuf
|
||||
, curl
|
||||
, zlib
|
||||
, libssh
|
||||
, zstd
|
||||
, lz4
|
||||
, readline
|
||||
, libtirpc
|
||||
, rpcsvc-proto
|
||||
, libedit
|
||||
, libevent
|
||||
, icu
|
||||
, re2
|
||||
, ncurses
|
||||
, libfido2
|
||||
, python3
|
||||
, cyrus_sasl
|
||||
, openldap
|
||||
, antlr
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
pkg-config,
|
||||
cmake,
|
||||
fetchurl,
|
||||
git,
|
||||
cctools,
|
||||
darwin,
|
||||
makeWrapper,
|
||||
bison,
|
||||
openssl,
|
||||
protobuf,
|
||||
curl,
|
||||
zlib,
|
||||
libssh,
|
||||
zstd,
|
||||
lz4,
|
||||
readline,
|
||||
libtirpc,
|
||||
rpcsvc-proto,
|
||||
libedit,
|
||||
libevent,
|
||||
icu,
|
||||
re2,
|
||||
ncurses,
|
||||
libfido2,
|
||||
python3,
|
||||
cyrus_sasl,
|
||||
openldap,
|
||||
antlr,
|
||||
}:
|
||||
|
||||
let
|
||||
pythonDeps = with python3.pkgs; [ certifi paramiko pyyaml ];
|
||||
pythonDeps = with python3.pkgs; [
|
||||
certifi
|
||||
paramiko
|
||||
pyyaml
|
||||
];
|
||||
|
||||
mysqlShellVersion = "9.1.0";
|
||||
mysqlServerVersion = "9.1.0";
|
||||
@ -70,32 +75,44 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
substituteInPlace cmake/libutils.cmake --replace-fail /usr/bin/libtool libtool
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ pkg-config cmake git bison makeWrapper ]
|
||||
nativeBuildInputs =
|
||||
[
|
||||
pkg-config
|
||||
cmake
|
||||
git
|
||||
bison
|
||||
makeWrapper
|
||||
]
|
||||
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ rpcsvc-proto ]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [ cctools darwin.DarwinTools ];
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
cctools
|
||||
darwin.DarwinTools
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
curl
|
||||
libedit
|
||||
libssh
|
||||
lz4
|
||||
openssl
|
||||
protobuf
|
||||
readline
|
||||
zlib
|
||||
zstd
|
||||
libevent
|
||||
icu
|
||||
re2
|
||||
ncurses
|
||||
libfido2
|
||||
cyrus_sasl
|
||||
openldap
|
||||
python3
|
||||
antlr.runtime.cpp
|
||||
] ++ pythonDeps
|
||||
++ lib.optionals stdenv.hostPlatform.isLinux [ libtirpc ]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.libutil ];
|
||||
buildInputs =
|
||||
[
|
||||
curl
|
||||
libedit
|
||||
libssh
|
||||
lz4
|
||||
openssl
|
||||
protobuf
|
||||
readline
|
||||
zlib
|
||||
zstd
|
||||
libevent
|
||||
icu
|
||||
re2
|
||||
ncurses
|
||||
libfido2
|
||||
cyrus_sasl
|
||||
openldap
|
||||
python3
|
||||
antlr.runtime.cpp
|
||||
]
|
||||
++ pythonDeps
|
||||
++ lib.optionals stdenv.hostPlatform.isLinux [ libtirpc ]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.libutil ];
|
||||
|
||||
preConfigure = ''
|
||||
# Build MySQL
|
||||
|
Loading…
Reference in New Issue
Block a user