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.

203 lines
4.5 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchurl
, substituteAll
, cmake
, ninja
, pkg-config
, glibc
, gtk3
, gtkmm3
, pcre
, swig
2022-09-14 09:46:13 +00:00
, antlr4_9
, 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;
2016-08-14 12:28:05 +00:00
in stdenv.mkDerivation rec {
pname = "mysql-workbench";
2023-02-23 19:52:19 +00:00
version = "8.0.32";
src = fetchurl {
url = "http://dev.mysql.com/get/Downloads/MySQLGUITools/mysql-workbench-community-${version}-src.tar.gz";
2023-02-23 19:52:19 +00:00
sha256 = "sha256-ruGdYTG0KPhRnUdlfaZjt1r/tAhA1XeAtjDgu/K9okI=";
};
2018-08-08 22:22:59 +00:00
patches = [
./fix-gdal-includes.patch
2018-08-08 22:22:59 +00:00
(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}";
})
2018-08-08 22:22:59 +00:00
];
2022-09-14 09:46:13 +00:00
# 1. have it look for 4.9.3 instead of 4.9.1
# 2. for some reason CMakeCache.txt is part of source code
2019-08-14 20:46:52 +00:00
preConfigure = ''
substituteInPlace CMakeLists.txt \
2022-09-14 09:46:13 +00:00
--replace "antlr-4.9.1-complete.jar" "antlr-4.9.3-complete.jar"
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
2022-09-14 09:46:13 +00:00
antlr4_9.runtime.cpp
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
'';
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.
2022-09-14 09:46:13 +00:00
"-DWITH_ANTLR_JAR=${antlr4_9.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 = with lib; {
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 = licenses.gpl2;
maintainers = [ ];
2018-08-08 22:22:59 +00:00
platforms = platforms.linux;
};
}