2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, intltool, itstool, libxml2, gtk3, openssl, gnome3, gobject-introspection, vala, libgee
|
2021-01-07 19:12:01 +00:00
|
|
|
, overrideCC, gcc6, fetchpatch, autoreconfHook, gtk-doc, autoconf-archive, yelp-tools
|
2019-09-22 08:38:09 +01:00
|
|
|
, mysqlSupport ? false, libmysqlclient ? null
|
2018-02-24 11:23:08 +00:00
|
|
|
, postgresSupport ? false, postgresql ? null
|
|
|
|
}:
|
|
|
|
|
2019-09-22 08:38:09 +01:00
|
|
|
assert mysqlSupport -> libmysqlclient != null;
|
2018-02-24 11:23:08 +00:00
|
|
|
assert postgresSupport -> postgresql != null;
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2018-08-25 09:36:52 +01:00
|
|
|
(if stdenv.isAarch64 then overrideCC stdenv gcc6 else stdenv).mkDerivation rec {
|
2018-12-11 22:42:28 +00:00
|
|
|
pname = "libgda";
|
2020-11-18 14:06:03 +00:00
|
|
|
version = "5.2.10";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-21 17:00:13 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-11-18 14:06:03 +00:00
|
|
|
sha256 = "1j1l4dwjgw6w4d1v4bl5a4kwyj7bcih8mj700ywm7xakh1xxyv3g";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
2021-01-07 19:12:01 +00:00
|
|
|
|
|
|
|
patches = [
|
|
|
|
# fix compile error with mysql
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/libgda/-/commit/9859479884fad5f39e6c37e8995e57c28b11b1b9.diff";
|
|
|
|
sha256 = "158sncc5bg9lkri1wb0i1ri1nhx4c34rzi47gbfkwphlp7qd4qqv";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
configureFlags = with lib; [
|
2019-10-15 18:58:08 +01:00
|
|
|
"--with-mysql=${if mysqlSupport then "yes" else "no"}"
|
|
|
|
"--with-postgres=${if postgresSupport then "yes" else "no"}"
|
2019-10-15 19:00:17 +01:00
|
|
|
|
|
|
|
# macOS builds use the sqlite source code that comes with libgda,
|
|
|
|
# as opposed to using the system or brewed sqlite3, which is not supported on macOS,
|
|
|
|
# as mentioned in https://github.com/GNOME/libgda/blob/95eeca4b0470f347c645a27f714c62aa6e59f820/libgda/sqlite/README#L31,
|
|
|
|
# which references the paper https://web.archive.org/web/20100610151539/http://lattice.umiacs.umd.edu/files/functions_tr.pdf
|
|
|
|
# See also https://github.com/Homebrew/homebrew-core/blob/104f9ecd02854a82372b64d63d41356555378a52/Formula/libgda.rb
|
|
|
|
"--enable-system-sqlite=${if stdenv.isDarwin then "no" else "yes"}"
|
2019-10-15 18:58:08 +01:00
|
|
|
];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2021-01-07 19:12:01 +00:00
|
|
|
nativeBuildInputs = [ pkg-config intltool itstool libxml2 gobject-introspection vala autoreconfHook gtk-doc autoconf-archive yelp-tools ];
|
2021-01-21 17:00:13 +00:00
|
|
|
buildInputs = with lib; [ gtk3 openssl libgee ]
|
2019-09-22 08:38:09 +01:00
|
|
|
++ optional (mysqlSupport) libmysqlclient
|
2018-02-24 11:23:08 +00:00
|
|
|
++ optional (postgresSupport) postgresql;
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2018-12-11 22:42:28 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2016-09-18 20:35:23 +01:00
|
|
|
description = "Database access library";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.gnome-db.org/";
|
2016-09-18 20:35:23 +01:00
|
|
|
license = [ licenses.lgpl2 licenses.gpl2 ];
|
2020-04-01 13:40:51 +01:00
|
|
|
maintainers = teams.gnome.members;
|
2019-10-15 18:57:38 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2016-09-18 20:35:23 +01:00
|
|
|
};
|
|
|
|
}
|