1 { lib, stdenv, fetchurl, pkg-config, glibmm, libgda, libxml2, gnome
3 , postgresSupport ? false }:
6 gda = libgda.override {
7 inherit mysqlSupport postgresSupport;
9 in stdenv.mkDerivation rec {
13 outputs = [ "out" "dev" ];
16 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
17 sha256 = "1fyh15b3f8hmwbswalxk1g4l04yvvybksn5nm7gznn5jl5q010p9";
20 nativeBuildInputs = [ pkg-config ];
21 buildInputs = [ glibmm libxml2 ];
22 propagatedBuildInputs = [ gda ];
24 enableParallelBuilding = true;
27 updateScript = gnome.updateScript {
29 versionPolicy = "none"; # Should be odd-unstable but stable version has not been released yet.
34 description = "C++ bindings for libgda";
35 homepage = "https://www.gnome-db.org/";
36 license = licenses.lgpl21Plus;
37 maintainers = teams.gnome.members;
38 platforms = platforms.linux;