mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
libgda: build GI typelibs
This commit is contained in:
parent
0e502862d5
commit
6b15745007
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, gtk3, openssl, gnome3, vala
|
||||
{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, gtk3, openssl, gnome3, gobject-introspection, vala
|
||||
, overrideCC, gcc6
|
||||
, mysqlSupport ? false, mysql ? null
|
||||
, postgresSupport ? false, postgresql ? null
|
||||
|
@ -23,7 +23,7 @@ assert postgresSupport -> postgresql != null;
|
|||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig intltool itstool libxml2 vala ];
|
||||
nativeBuildInputs = [ pkgconfig intltool itstool libxml2 gobject-introspection vala ];
|
||||
buildInputs = with stdenv.lib; [ gtk3 openssl gnome3.libgee ]
|
||||
++ optional (mysqlSupport) mysql.connector-c
|
||||
++ optional (postgresSupport) postgresql;
|
||||
|
|
Loading…
Reference in a new issue