nixpkgs/pkgs/applications/kde/neochat.nix

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

83 lines
1.4 KiB
Nix
Raw Normal View History

{ mkDerivation
, lib
2023-08-08 21:41:13 +00:00
, fetchpatch
2020-12-24 05:21:19 +00:00
, cmake
2020-12-27 09:49:17 +00:00
, extra-cmake-modules
, pkg-config
, wrapQtAppsHook
, cmark
2021-07-14 02:24:28 +00:00
, kconfig
, kdbusaddons
, ki18n
, kio
, kirigami-addons
2020-12-27 09:49:17 +00:00
, kirigami2
, kitemmodels
2020-12-27 09:49:17 +00:00
, knotifications
, kquickimageedit
2021-07-14 02:24:28 +00:00
, libpulseaudio
, libquotient
, libsecret
, olm
, qcoro
2021-07-14 02:24:28 +00:00
, qqc2-desktop-style
, qtgraphicaleffects
, qtkeychain
, qtmultimedia
, qtquickcontrols2
, sonnet
2020-12-24 05:21:19 +00:00
}:
mkDerivation {
2020-12-24 05:21:19 +00:00
pname = "neochat";
2023-08-08 21:41:13 +00:00
patches = [
(fetchpatch {
name = "libquotient-0.8.patch";
url = "https://invent.kde.org/network/neochat/-/commit/d9d5e17be2a2057ab2ee545561fab721cb211f7f.patch";
hash = "sha256-y1PEehFCW+69OH8YvL3SUGOb8Hhyf8xwRvSZzJ5J5Wc=";
})
];
nativeBuildInputs = [
cmake
extra-cmake-modules
pkg-config
wrapQtAppsHook
];
2020-12-27 09:49:17 +00:00
buildInputs = [
cmark
2021-07-14 02:24:28 +00:00
kconfig
kdbusaddons
kio
2021-07-14 02:24:28 +00:00
ki18n
kirigami-addons
2020-12-27 09:49:17 +00:00
kirigami2
kitemmodels
2020-12-27 09:49:17 +00:00
knotifications
kquickimageedit
libpulseaudio
2021-07-14 02:24:28 +00:00
libquotient
libsecret
olm
qcoro
2021-07-14 02:24:28 +00:00
qtgraphicaleffects
qtkeychain
qtmultimedia
qtquickcontrols2
qqc2-desktop-style
sonnet
2020-12-27 09:49:17 +00:00
];
2020-12-24 05:21:19 +00:00
meta = with lib; {
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;
};
}