2022-09-21 02:09:40 +01:00
|
|
|
{ gcc11Stdenv
|
2021-01-25 08:26:54 +00:00
|
|
|
, lib
|
2022-09-21 02:09:40 +01:00
|
|
|
, srcs
|
|
|
|
|
2020-12-24 05:21:19 +00:00
|
|
|
, cmake
|
2020-12-27 09:49:17 +00:00
|
|
|
, extra-cmake-modules
|
2022-09-21 02:09:40 +01:00
|
|
|
, pkg-config
|
|
|
|
, wrapQtAppsHook
|
|
|
|
|
|
|
|
, cmark
|
2021-07-14 03:24:28 +01:00
|
|
|
, kconfig
|
|
|
|
, kdbusaddons
|
|
|
|
, ki18n
|
2022-03-16 19:08:50 +00:00
|
|
|
, kio
|
2020-12-27 09:49:17 +00:00
|
|
|
, kirigami2
|
2020-12-27 22:58:17 +00:00
|
|
|
, kitemmodels
|
2020-12-27 09:49:17 +00:00
|
|
|
, knotifications
|
|
|
|
, kquickimageedit
|
2021-07-14 03:24:28 +01:00
|
|
|
, libpulseaudio
|
|
|
|
, libquotient
|
|
|
|
, libsecret
|
|
|
|
, olm
|
2022-03-16 19:08:50 +00:00
|
|
|
, qcoro
|
2021-07-14 03:24:28 +01:00
|
|
|
, qqc2-desktop-style
|
|
|
|
, qtgraphicaleffects
|
|
|
|
, qtkeychain
|
|
|
|
, qtmultimedia
|
|
|
|
, qtquickcontrols2
|
2022-03-16 19:08:50 +00:00
|
|
|
, sonnet
|
2020-12-24 05:21:19 +00:00
|
|
|
}:
|
|
|
|
|
2022-09-21 02:09:40 +01:00
|
|
|
# Workaround for AArch64 not using GCC11 yet.
|
|
|
|
gcc11Stdenv.mkDerivation rec {
|
2020-12-24 05:21:19 +00:00
|
|
|
pname = "neochat";
|
2022-09-21 02:09:40 +01:00
|
|
|
inherit (srcs.neochat) version src;
|
2020-12-24 05:21:19 +00:00
|
|
|
|
2022-09-21 02:09:40 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
extra-cmake-modules
|
|
|
|
pkg-config
|
|
|
|
wrapQtAppsHook
|
|
|
|
];
|
2020-12-27 09:49:17 +00:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
cmark
|
2021-07-14 03:24:28 +01:00
|
|
|
kconfig
|
|
|
|
kdbusaddons
|
2022-03-16 19:08:50 +00:00
|
|
|
kio
|
2021-07-14 03:24:28 +01:00
|
|
|
ki18n
|
2020-12-27 09:49:17 +00:00
|
|
|
kirigami2
|
2020-12-27 22:58:17 +00:00
|
|
|
kitemmodels
|
2020-12-27 09:49:17 +00:00
|
|
|
knotifications
|
|
|
|
kquickimageedit
|
|
|
|
libpulseaudio
|
2021-07-14 03:24:28 +01:00
|
|
|
libquotient
|
|
|
|
libsecret
|
|
|
|
olm
|
2022-03-16 19:08:50 +00:00
|
|
|
qcoro
|
2021-07-14 03:24:28 +01:00
|
|
|
qtgraphicaleffects
|
|
|
|
qtkeychain
|
|
|
|
qtmultimedia
|
|
|
|
qtquickcontrols2
|
|
|
|
qqc2-desktop-style
|
2022-03-16 19:08:50 +00:00
|
|
|
sonnet
|
2020-12-27 09:49:17 +00:00
|
|
|
];
|
2020-12-24 05:21:19 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-12-30 21:16:56 +00:00
|
|
|
description = "A client for matrix, the decentralized communication protocol";
|
2020-12-24 05:21:19 +00:00
|
|
|
homepage = "https://apps.kde.org/en/neochat";
|
2020-12-27 09:49:17 +00:00
|
|
|
license = licenses.gpl3Only;
|
2022-02-17 08:45:48 +00:00
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
2020-12-24 05:21:19 +00:00
|
|
|
platforms = with platforms; linux;
|
|
|
|
};
|
|
|
|
}
|