2023-03-17 23:39:35 +01:00
|
|
|
{ mkDerivation
|
2021-01-25 09:26:54 +01:00
|
|
|
, lib
|
2022-09-21 03:09:40 +02:00
|
|
|
|
2020-12-24 06:21:19 +01:00
|
|
|
, cmake
|
2020-12-27 10:49:17 +01:00
|
|
|
, extra-cmake-modules
|
2022-09-21 03:09:40 +02:00
|
|
|
, pkg-config
|
|
|
|
, wrapQtAppsHook
|
|
|
|
|
|
|
|
, cmark
|
2021-07-14 04:24:28 +02:00
|
|
|
, kconfig
|
|
|
|
, kdbusaddons
|
|
|
|
, ki18n
|
2022-03-16 20:08:50 +01:00
|
|
|
, kio
|
2022-12-01 04:08:56 +01:00
|
|
|
, kirigami-addons
|
2020-12-27 10:49:17 +01:00
|
|
|
, kirigami2
|
2020-12-27 23:58:17 +01:00
|
|
|
, kitemmodels
|
2020-12-27 10:49:17 +01:00
|
|
|
, knotifications
|
2023-09-14 14:15:49 +02:00
|
|
|
, kquickcharts
|
2020-12-27 10:49:17 +01:00
|
|
|
, kquickimageedit
|
2021-07-14 04:24:28 +02:00
|
|
|
, libpulseaudio
|
|
|
|
, libquotient
|
|
|
|
, libsecret
|
|
|
|
, olm
|
2022-03-16 20:08:50 +01:00
|
|
|
, qcoro
|
2021-07-14 04:24:28 +02:00
|
|
|
, qqc2-desktop-style
|
|
|
|
, qtgraphicaleffects
|
2023-09-14 14:15:49 +02:00
|
|
|
, qtlocation
|
2021-07-14 04:24:28 +02:00
|
|
|
, qtmultimedia
|
|
|
|
, qtquickcontrols2
|
2022-03-16 20:08:50 +01:00
|
|
|
, sonnet
|
2020-12-24 06:21:19 +01:00
|
|
|
}:
|
|
|
|
|
2023-03-17 23:39:35 +01:00
|
|
|
mkDerivation {
|
2020-12-24 06:21:19 +01:00
|
|
|
pname = "neochat";
|
|
|
|
|
2022-09-21 03:09:40 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
extra-cmake-modules
|
|
|
|
pkg-config
|
|
|
|
wrapQtAppsHook
|
|
|
|
];
|
2020-12-27 10:49:17 +01:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
cmark
|
2021-07-14 04:24:28 +02:00
|
|
|
kconfig
|
|
|
|
kdbusaddons
|
2022-03-16 20:08:50 +01:00
|
|
|
kio
|
2021-07-14 04:24:28 +02:00
|
|
|
ki18n
|
2022-12-01 04:08:56 +01:00
|
|
|
kirigami-addons
|
2020-12-27 10:49:17 +01:00
|
|
|
kirigami2
|
2020-12-27 23:58:17 +01:00
|
|
|
kitemmodels
|
2020-12-27 10:49:17 +01:00
|
|
|
knotifications
|
2023-09-14 14:15:49 +02:00
|
|
|
kquickcharts
|
2020-12-27 10:49:17 +01:00
|
|
|
kquickimageedit
|
|
|
|
libpulseaudio
|
2021-07-14 04:24:28 +02:00
|
|
|
libquotient
|
|
|
|
libsecret
|
|
|
|
olm
|
2022-03-16 20:08:50 +01:00
|
|
|
qcoro
|
2021-07-14 04:24:28 +02:00
|
|
|
qtgraphicaleffects
|
2023-09-14 14:15:49 +02:00
|
|
|
qtlocation
|
2021-07-14 04:24:28 +02:00
|
|
|
qtmultimedia
|
|
|
|
qtquickcontrols2
|
|
|
|
qqc2-desktop-style
|
2022-03-16 20:08:50 +01:00
|
|
|
sonnet
|
2020-12-27 10:49:17 +01:00
|
|
|
];
|
2020-12-24 06:21:19 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2021-12-30 22:16:56 +01:00
|
|
|
description = "Client for matrix, the decentralized communication protocol";
|
2024-03-19 03:14:51 +01:00
|
|
|
mainProgram = "neochat";
|
2020-12-24 06:21:19 +01:00
|
|
|
homepage = "https://apps.kde.org/en/neochat";
|
2020-12-27 10:49:17 +01:00
|
|
|
license = licenses.gpl3Only;
|
2022-02-17 09:45:48 +01:00
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
2020-12-24 06:21:19 +01:00
|
|
|
platforms = with platforms; linux;
|
|
|
|
};
|
|
|
|
}
|