2018-08-08 22:22:59 +00:00
|
|
|
|
{ stdenv, fetchurl, substituteAll, cmake, ninja, pkgconfig
|
|
|
|
|
, glibc, gtk3, gtkmm3, pcre, swig, antlr4_7, sudo
|
|
|
|
|
, mysql, libxml2, libmysqlconnectorcpp
|
|
|
|
|
, vsqlite, gdal, libiodbc, libpthreadstubs
|
|
|
|
|
, libXdmcp, libuuid, libzip, libsecret, libssh
|
|
|
|
|
, python2, jre
|
|
|
|
|
, boost, libsigcxx, libX11, openssl
|
|
|
|
|
, proj, cairo, libxkbcommon, epoxy, wrapGAppsHook
|
|
|
|
|
, at-spi2-core, dbus, bash, coreutils
|
2010-09-28 09:33:56 +00:00
|
|
|
|
}:
|
|
|
|
|
|
2016-08-14 12:28:05 +00:00
|
|
|
|
let
|
2018-08-08 22:22:59 +00:00
|
|
|
|
inherit (python2.pkgs) paramiko pycairo pyodbc;
|
2016-08-14 12:28:05 +00:00
|
|
|
|
in stdenv.mkDerivation rec {
|
2010-10-26 00:22:44 +00:00
|
|
|
|
pname = "mysql-workbench";
|
2018-10-27 10:33:23 +00:00
|
|
|
|
version = "8.0.13";
|
2010-10-26 00:22:44 +00:00
|
|
|
|
name = "${pname}-${version}";
|
2010-09-28 09:33:56 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2016-09-17 05:46:14 +00:00
|
|
|
|
url = "http://dev.mysql.com/get/Downloads/MySQLGUITools/mysql-workbench-community-${version}-src.tar.gz";
|
2018-10-27 10:33:23 +00:00
|
|
|
|
sha256 = "1p4xy2a5cin1l06j4ixpgp1ynhjdj5gax4fjhznspch3c63jp9hj";
|
2010-09-28 09:33:56 +00:00
|
|
|
|
};
|
|
|
|
|
|
2018-08-08 22:22:59 +00:00
|
|
|
|
patches = [
|
|
|
|
|
./fix-gdal-includes.patch
|
|
|
|
|
(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";
|
|
|
|
|
sudo = "${sudo}/bin/sudo";
|
|
|
|
|
})
|
|
|
|
|
];
|
2016-09-17 05:46:14 +00:00
|
|
|
|
|
2018-08-08 22:22:59 +00:00
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
cmake ninja pkgconfig jre swig wrapGAppsHook
|
|
|
|
|
];
|
2016-09-17 05:46:14 +00:00
|
|
|
|
|
2018-08-08 22:22:59 +00:00
|
|
|
|
buildInputs = [
|
|
|
|
|
gtk3 gtkmm3 libX11 antlr4_7.runtime.cpp python2 mysql libxml2
|
|
|
|
|
libmysqlconnectorcpp vsqlite gdal boost libssh openssl
|
|
|
|
|
libiodbc pcre cairo libuuid libzip libsecret
|
|
|
|
|
libsigcxx proj
|
|
|
|
|
# python dependencies:
|
|
|
|
|
paramiko pycairo pyodbc # sqlanydb
|
|
|
|
|
# transitive dependencies:
|
|
|
|
|
libpthreadstubs libXdmcp libxkbcommon epoxy at-spi2-core dbus
|
|
|
|
|
];
|
2010-09-28 09:33:56 +00:00
|
|
|
|
|
2018-08-08 22:22:59 +00:00
|
|
|
|
postPatch = ''
|
|
|
|
|
patchShebangs tools/get_wb_version.sh
|
2010-09-28 09:33:56 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2016-09-17 05:46:14 +00:00
|
|
|
|
NIX_CFLAGS_COMPILE = [
|
2018-08-08 22:22:59 +00:00
|
|
|
|
# error: 'OGRErr OGRSpatialReference::importFromWkt(char**)' is deprecated
|
|
|
|
|
"-Wno-error=deprecated-declarations"
|
2016-09-17 05:46:14 +00:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
|
"-DMySQL_CONFIG_PATH=${mysql}/bin/mysql_config"
|
2018-08-08 22:22:59 +00:00
|
|
|
|
"-DIODBC_CONFIG_PATH=${libiodbc}/bin/iodbc-config"
|
|
|
|
|
"-DWITH_ANTLR_JAR=${antlr4_7.jarLocation}"
|
2016-09-17 05:46:14 +00:00
|
|
|
|
];
|
|
|
|
|
|
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;
|
2015-05-28 16:40:33 +00:00
|
|
|
|
|
2018-08-08 22:22:59 +00:00
|
|
|
|
preFixup = ''
|
|
|
|
|
gappsWrapperArgs+=(
|
|
|
|
|
--prefix PATH : "${python2}/bin"
|
|
|
|
|
--prefix PROJSO : "${proj}/lib/libproj.so"
|
|
|
|
|
--set PYTHONPATH $PYTHONPATH
|
|
|
|
|
)
|
|
|
|
|
'';
|
2010-09-28 09:33:56 +00:00
|
|
|
|
|
2018-08-08 22:22:59 +00:00
|
|
|
|
# Let’s 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}"
|
|
|
|
|
wrapProgram "''${file}" "''${gappsWrapperArgs[@]}"
|
|
|
|
|
fi
|
|
|
|
|
done
|
2010-09-28 09:33:56 +00:00
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 09:49:53 +00:00
|
|
|
|
description = "Visual MySQL database modeling, administration and querying tool";
|
2010-09-28 09:33:56 +00:00
|
|
|
|
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 = [ maintainers.kkallio ];
|
2018-08-08 22:22:59 +00:00
|
|
|
|
platforms = platforms.linux;
|
2010-09-28 09:33:56 +00:00
|
|
|
|
};
|
|
|
|
|
}
|