nixpkgs/pkgs/applications/misc/mysql-workbench/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

210 lines
4.8 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
, substituteAll
, cmake
, ninja
, pkg-config
, glibc
, gtk3
, gtkmm3
, pcre
, swig
, antlr4_12
, sudo
, mysql
, libxml2
, libmysqlconnectorcpp
, vsqlite
, gdal
, libiodbc
, libpthreadstubs
, libXdmcp
, libuuid
, libzip
, libsecret
, libssh
2022-09-14 09:46:13 +00:00
, python3
, jre
, boost
, libsigcxx
, libX11
, openssl
, rapidjson
, proj
, cairo
, libxkbcommon
, libepoxy
, wrapGAppsHook
, at-spi2-core
, dbus
, bash
, coreutils
, zstd
}:
2016-08-14 12:28:05 +00:00
let
2022-09-14 09:46:13 +00:00
inherit (python3.pkgs) paramiko pycairo pyodbc;
in
stdenv.mkDerivation (finalAttrs: {
pname = "mysql-workbench";
2024-01-24 12:21:16 +00:00
version = "8.0.36";
src = fetchurl {
url = "https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-${finalAttrs.version}-src.tar.gz";
2024-01-24 12:21:16 +00:00
hash = "sha256-Y02KZrbCd3SRBYpgq6gYfpR+TEmg566D3zEvpwcUY3w=";
};
2018-08-08 22:22:59 +00:00
patches = [
(substituteAll {
src = ./hardcode-paths.patch;
catchsegv = "${glibc.bin}/bin/catchsegv";
bash = "${bash}/bin/bash";
cp = "${coreutils}/bin/cp";
dd = "${coreutils}/bin/dd";
ls = "${coreutils}/bin/ls";
mkdir = "${coreutils}/bin/mkdir";
nohup = "${coreutils}/bin/nohup";
rm = "${coreutils}/bin/rm";
rmdir = "${coreutils}/bin/rmdir";
2022-09-14 09:46:13 +00:00
stat = "${coreutils}/bin/stat";
2018-08-08 22:22:59 +00:00
sudo = "${sudo}/bin/sudo";
})
# Fix swig not being able to find headers
# https://github.com/NixOS/nixpkgs/pull/82362#issuecomment-597948461
(substituteAll {
src = ./fix-swig-build.patch;
cairoDev = "${cairo.dev}";
})
# a newer libxml2 version has changed some interfaces
./fix-xml2.patch
2018-08-08 22:22:59 +00:00
];
# 1. have it look for 4.12.0 instead of 4.11.1
2022-09-14 09:46:13 +00:00
# 2. for some reason CMakeCache.txt is part of source code
2019-08-14 20:46:52 +00:00
preConfigure = ''
substituteInPlace CMakeLists.txt \
--replace "antlr-4.11.1-complete.jar" "antlr-4.12.0-complete.jar"
2022-09-14 09:46:13 +00:00
rm -f build/CMakeCache.txt
2019-08-14 20:46:52 +00:00
'';
2018-08-08 22:22:59 +00:00
nativeBuildInputs = [
cmake
ninja
pkg-config
jre
swig
wrapGAppsHook
2018-08-08 22:22:59 +00:00
];
2018-08-08 22:22:59 +00:00
buildInputs = [
gtk3
gtkmm3
libX11
antlr4_12.runtime.cpp
2022-09-14 09:46:13 +00:00
python3
mysql
libxml2
libmysqlconnectorcpp
vsqlite
gdal
boost
libssh
openssl
rapidjson
libiodbc
pcre
cairo
libuuid
libzip
libsecret
libsigcxx
proj
2018-08-08 22:22:59 +00:00
# python dependencies:
paramiko
pycairo
pyodbc
# TODO: package sqlanydb and add it here
2018-08-08 22:22:59 +00:00
# transitive dependencies:
libpthreadstubs
libXdmcp
libxkbcommon
libepoxy
at-spi2-core
dbus
zstd
2018-08-08 22:22:59 +00:00
];
2018-08-08 22:22:59 +00:00
postPatch = ''
patchShebangs tools/get_wb_version.sh
'';
# GCC 13: error: 'int64_t' in namespace 'std' does not name a type
# when updating the version make sure this is still needed
env.CXXFLAGS = "-include cstdint";
env.NIX_CFLAGS_COMPILE = toString ([
# error: 'OGRErr OGRSpatialReference::importFromWkt(char**)' is deprecated
"-Wno-error=deprecated-declarations"
] ++ lib.optionals stdenv.isAarch64 [
# error: narrowing conversion of '-1' from 'int' to 'char'
"-Wno-error=narrowing"
] ++ lib.optionals (stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "12") [
# Needed with GCC 12 but problematic with some old GCCs
"-Wno-error=maybe-uninitialized"
]);
cmakeFlags = [
"-DMySQL_CONFIG_PATH=${mysql}/bin/mysql_config"
2018-08-08 22:22:59 +00:00
"-DIODBC_CONFIG_PATH=${libiodbc}/bin/iodbc-config"
2020-07-25 14:35:42 +00:00
# mysql-workbench 8.0.21 depends on libmysqlconnectorcpp 1.1.8.
# Newer versions of connector still provide the legacy library when enabled
# but the headers are in a different location.
"-DWITH_ANTLR_JAR=${antlr4_12.jarLocation}"
"-DMySQLCppConn_INCLUDE_DIR=${libmysqlconnectorcpp}/include/jdbc"
];
2018-08-08 22:22:59 +00:00
# There is already an executable and a wrapper in bindir
# No need to wrap both
dontWrapGApps = true;
2018-08-08 22:22:59 +00:00
preFixup = ''
gappsWrapperArgs+=(
2022-09-14 09:46:13 +00:00
--prefix PATH : "${python3}/bin"
2018-08-08 22:22:59 +00:00
--prefix PROJSO : "${proj}/lib/libproj.so"
--set PYTHONPATH $PYTHONPATH
)
'';
2018-08-08 22:22:59 +00:00
# Lets wrap the programs not ending with bin
# until https://bugs.mysql.com/bug.php?id=91948 is fixed
postFixup = ''
find -L "$out/bin" -type f -executable -print0 \
| while IFS= read -r -d ''' file; do
if [[ "''${file}" != *-bin ]]; then
echo "Wrapping program $file"
wrapGApp "$file"
2018-08-08 22:22:59 +00:00
fi
done
'';
meta = {
description = "Visual MySQL database modeling, administration and querying tool";
longDescription = ''
MySQL Workbench is a modeling tool that allows you to design
and generate MySQL databases graphically. It also has administration
and query development modules where you can manage MySQL server instances
and execute SQL queries.
'';
homepage = "http://wb.mysql.com/";
license = lib.licenses.gpl2Only;
2023-08-04 19:10:05 +00:00
mainProgram = "mysql-workbench";
maintainers = with lib.maintainers; [ tomasajt ];
platforms = lib.platforms.linux;
};
})