2020-12-27 09:49:17 +00:00
|
|
|
{ mkDerivation
|
2021-01-11 07:54:33 +00:00
|
|
|
, lib, stdenv
|
2020-12-27 09:49:17 +00:00
|
|
|
, fetchFromGitLab
|
|
|
|
, pkg-config
|
2020-12-24 05:21:19 +00:00
|
|
|
, cmake
|
2020-12-27 09:49:17 +00:00
|
|
|
, qtbase
|
|
|
|
, qttools
|
|
|
|
, qtquickcontrols2
|
|
|
|
, qtmultimedia
|
2020-12-27 22:58:17 +00:00
|
|
|
, qtgraphicaleffects
|
2020-12-27 09:49:17 +00:00
|
|
|
, qtkeychain
|
2020-12-24 05:21:19 +00:00
|
|
|
, libpulseaudio
|
2020-12-27 09:49:17 +00:00
|
|
|
, olm
|
|
|
|
, libsecret
|
|
|
|
, cmark
|
|
|
|
, extra-cmake-modules
|
|
|
|
, kirigami2
|
2020-12-27 22:58:17 +00:00
|
|
|
, kitemmodels
|
2020-12-27 09:49:17 +00:00
|
|
|
, ki18n
|
|
|
|
, knotifications
|
|
|
|
, kdbusaddons
|
|
|
|
, kconfig
|
|
|
|
, libquotient
|
|
|
|
, kquickimageedit
|
2020-12-24 05:21:19 +00:00
|
|
|
}:
|
|
|
|
|
2020-12-27 09:49:17 +00:00
|
|
|
mkDerivation rec {
|
2020-12-24 05:21:19 +00:00
|
|
|
pname = "neochat";
|
2021-01-20 11:06:08 +00:00
|
|
|
version = "1.0.1";
|
2020-12-24 05:21:19 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "invent.kde.org";
|
|
|
|
owner = "network";
|
|
|
|
repo = pname;
|
2020-12-29 22:17:11 +00:00
|
|
|
rev = "v${version}";
|
2021-01-20 11:06:08 +00:00
|
|
|
sha256 = "sha256-xGqGFJHyoZXHLv/n3UGr/KVbgs5Gc9kKKWIuKMr9DtQ=";
|
2020-12-24 05:21:19 +00:00
|
|
|
};
|
|
|
|
|
2020-12-27 09:49:17 +00:00
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules pkg-config ];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
qtkeychain
|
|
|
|
qtquickcontrols2
|
|
|
|
qtmultimedia
|
2020-12-27 22:58:17 +00:00
|
|
|
qtgraphicaleffects
|
2020-12-27 09:49:17 +00:00
|
|
|
olm
|
|
|
|
libsecret
|
|
|
|
cmark
|
|
|
|
kirigami2
|
2020-12-27 22:58:17 +00:00
|
|
|
kitemmodels
|
2020-12-27 09:49:17 +00:00
|
|
|
ki18n
|
|
|
|
knotifications
|
|
|
|
kdbusaddons
|
|
|
|
kconfig
|
|
|
|
libquotient
|
|
|
|
kquickimageedit
|
|
|
|
libpulseaudio
|
|
|
|
];
|
2020-12-24 05:21:19 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-12-24 05:21:19 +00:00
|
|
|
description = "A client for matrix, the decentralized communication protocol.";
|
|
|
|
homepage = "https://apps.kde.org/en/neochat";
|
2020-12-27 09:49:17 +00:00
|
|
|
license = licenses.gpl3Only;
|
2020-12-29 23:02:04 +00:00
|
|
|
maintainers = with maintainers; [ mjlbach peterhoeg ];
|
2020-12-24 05:21:19 +00:00
|
|
|
platforms = with platforms; linux;
|
|
|
|
};
|
|
|
|
}
|