2017-09-15 19:04:00 +02:00
|
|
|
{
|
2019-09-20 11:17:53 +02:00
|
|
|
mkDerivation, lib, fetchurl, fetchpatch, extra-cmake-modules, kdoctools,
|
2017-09-15 19:04:00 +02:00
|
|
|
boost, qttools, qtwebkit,
|
|
|
|
breeze-icons, karchive, kcodecs, kcompletion, kconfig, kconfigwidgets, kcoreaddons,
|
|
|
|
kcrash, kguiaddons, ki18n, kiconthemes, kitemviews, kio, ktexteditor, ktextwidgets,
|
|
|
|
kwidgetsaddons, kxmlgui,
|
2019-09-22 09:38:09 +02:00
|
|
|
kdb, kproperty, kreport, lcms2, libmysqlclient, marble, postgresql
|
2017-09-15 19:04:00 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "kexi";
|
2019-04-22 21:37:31 +02:00
|
|
|
version = "3.2.0";
|
2017-09-15 19:04:00 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://kde/stable/${pname}/src/${pname}-${version}.tar.xz";
|
2019-04-22 21:37:31 +02:00
|
|
|
sha256 = "1zy1q7q9rfdaws3rwf3my22ywkn6g747s3ixfcg9r80mm2g3z0bs";
|
2017-09-15 19:04:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
boost qttools qtwebkit
|
|
|
|
breeze-icons karchive kcodecs kcompletion kconfig kconfigwidgets kcoreaddons
|
|
|
|
kcrash kguiaddons ki18n kiconthemes kitemviews kio ktexteditor ktextwidgets
|
|
|
|
kwidgetsaddons kxmlgui
|
2019-09-22 09:38:09 +02:00
|
|
|
kdb kproperty kreport lcms2 libmysqlclient marble postgresql
|
2017-09-15 19:04:00 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
propagatedUserEnvPkgs = [ kproperty ];
|
|
|
|
|
2019-09-20 11:17:53 +02:00
|
|
|
patches = [
|
|
|
|
# Changes in Qt 5.13 mean that QDate isn't exported from certain places,
|
|
|
|
# which the build was relying on. This patch explicitly imports QDate where
|
|
|
|
# needed.
|
|
|
|
# Should be unnecessary with kexi >= 3.3
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://cgit.kde.org/kexi.git/patch/src/plugins/forms/widgets/kexidbdatepicker.cpp?id=511d99b7745a6ce87a208bdbf69e631f1f136d53";
|
|
|
|
sha256 = "0m5cwq2v46gb1b12p7acck6dadvn7sw4xf8lkqikj9hvzq3r1dnj";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-09-15 19:04:00 +02:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A open source visual database applications creator, a long-awaited competitor for programs like MS Access or Filemaker";
|
|
|
|
longDescription = ''
|
|
|
|
Kexi is a visual database applications creator.
|
|
|
|
It can be used for creating database schemas,
|
|
|
|
inserting data, performing queries, and processing data.
|
|
|
|
Forms can be created to provide a custom interface to your data.
|
|
|
|
All database objects - tables, queries and forms - are stored in the database,
|
|
|
|
making it easy to share data and design.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://kexi-project.org/";
|
2017-09-15 19:04:00 +02:00
|
|
|
maintainers = with maintainers; [ zraexy ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = with licenses; [ gpl2 lgpl2 ];
|
|
|
|
};
|
|
|
|
}
|