nixpkgs/pkgs/applications/kde/neochat.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

74 lines
1.1 KiB
Nix
Raw Normal View History

{ mkDerivation
, lib
2020-12-24 08:21:19 +03:00
, cmake
2020-12-27 12:49:17 +03:00
, extra-cmake-modules
, pkg-config
, wrapQtAppsHook
, cmark
2021-07-14 05:24:28 +03:00
, kconfig
, kdbusaddons
, ki18n
, kio
, kirigami-addons
2020-12-27 12:49:17 +03:00
, kirigami2
, kitemmodels
2020-12-27 12:49:17 +03:00
, knotifications
, kquickimageedit
2021-07-14 05:24:28 +03:00
, libpulseaudio
, libquotient
, libsecret
, olm
, qcoro
2021-07-14 05:24:28 +03:00
, qqc2-desktop-style
, qtgraphicaleffects
, qtkeychain
, qtmultimedia
, qtquickcontrols2
, sonnet
2020-12-24 08:21:19 +03:00
}:
mkDerivation {
2020-12-24 08:21:19 +03:00
pname = "neochat";
nativeBuildInputs = [
cmake
extra-cmake-modules
pkg-config
wrapQtAppsHook
];
2020-12-27 12:49:17 +03:00
buildInputs = [
cmark
2021-07-14 05:24:28 +03:00
kconfig
kdbusaddons
kio
2021-07-14 05:24:28 +03:00
ki18n
kirigami-addons
2020-12-27 12:49:17 +03:00
kirigami2
kitemmodels
2020-12-27 12:49:17 +03:00
knotifications
kquickimageedit
libpulseaudio
2021-07-14 05:24:28 +03:00
libquotient
libsecret
olm
qcoro
2021-07-14 05:24:28 +03:00
qtgraphicaleffects
qtkeychain
qtmultimedia
qtquickcontrols2
qqc2-desktop-style
sonnet
2020-12-27 12:49:17 +03:00
];
2020-12-24 08:21:19 +03:00
meta = with lib; {
description = "A client for matrix, the decentralized communication protocol";
2020-12-24 08:21:19 +03:00
homepage = "https://apps.kde.org/en/neochat";
2020-12-27 12:49:17 +03:00
license = licenses.gpl3Only;
2022-02-17 11:45:48 +03:00
maintainers = with maintainers; [ peterhoeg ];
2020-12-24 08:21:19 +03:00
platforms = with platforms; linux;
};
}