2019-02-13 21:47:50 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, gtk3, openssl, gnome3, gobject-introspection, vala, libgee
|
2018-08-25 09:36:52 +01:00
|
|
|
, overrideCC, gcc6
|
2018-02-24 11:23:08 +00:00
|
|
|
, mysqlSupport ? false, mysql ? null
|
|
|
|
, postgresSupport ? false, postgresql ? null
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert mysqlSupport -> mysql != null;
|
|
|
|
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";
|
|
|
|
version = "5.2.8";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-12-11 22:42:28 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "0id4my5wh2m6rd7ijqp2azsjdb4l4yjrv3imq71kly00gjc6v1z2";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
2018-02-24 11:23:08 +00:00
|
|
|
configureFlags = with stdenv.lib; [ "--enable-gi-system-install=no" ]
|
|
|
|
++ (optional (mysqlSupport) "--with-mysql=yes")
|
|
|
|
++ (optional (postgresSupport) "--with-postgres=yes");
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2018-12-23 17:58:16 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool itstool libxml2 gobject-introspection vala ];
|
2019-02-13 21:47:50 +00:00
|
|
|
buildInputs = with stdenv.lib; [ gtk3 openssl libgee ]
|
2018-02-24 11:23:08 +00:00
|
|
|
++ optional (mysqlSupport) mysql.connector-c
|
|
|
|
++ 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;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-18 20:35:23 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Database access library";
|
|
|
|
homepage = http://www.gnome-db.org/;
|
|
|
|
license = [ licenses.lgpl2 licenses.gpl2 ];
|
2018-02-25 20:26:30 +00:00
|
|
|
maintainers = gnome3.maintainers;
|
2016-09-18 20:35:23 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|