Revert "Merge branch 'staging-next'"
This reverts commit41af38f372, reversing changes made tof0fec244ca. Let's delay this. We have some serious regressions.
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, gtk3, openssl, gnome3, gobject-introspection, vala, libgee
|
||||
, overrideCC, gcc6
|
||||
, mysqlSupport ? false, libmysqlclient ? null
|
||||
, mysqlSupport ? false, mysql ? null
|
||||
, postgresSupport ? false, postgresql ? null
|
||||
}:
|
||||
|
||||
assert mysqlSupport -> libmysqlclient != null;
|
||||
assert mysqlSupport -> mysql != null;
|
||||
assert postgresSupport -> postgresql != null;
|
||||
|
||||
(if stdenv.isAarch64 then overrideCC stdenv gcc6 else stdenv).mkDerivation rec {
|
||||
@@ -25,7 +25,7 @@ assert postgresSupport -> postgresql != null;
|
||||
|
||||
nativeBuildInputs = [ pkgconfig intltool itstool libxml2 gobject-introspection vala ];
|
||||
buildInputs = with stdenv.lib; [ gtk3 openssl libgee ]
|
||||
++ optional (mysqlSupport) libmysqlclient
|
||||
++ optional (mysqlSupport) mysql.connector-c
|
||||
++ optional (postgresSupport) postgresql;
|
||||
|
||||
passthru = {
|
||||
|
||||
Reference in New Issue
Block a user