3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/instant-messengers/neochat/default.nix

68 lines
1.2 KiB
Nix
Raw Normal View History

2020-12-27 09:49:17 +00:00
{ mkDerivation
, lib
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
, cmark
, extra-cmake-modules
2021-07-14 03:24:28 +01:00
, kconfig
, kdbusaddons
, ki18n
2020-12-27 09:49:17 +00:00
, kirigami2
, kitemmodels
2020-12-27 09:49:17 +00:00
, knotifications
, kquickimageedit
2021-07-14 03:24:28 +01:00
, libpulseaudio
, libquotient
, libsecret
, olm
, qqc2-desktop-style
, qtgraphicaleffects
, qtkeychain
, qtmultimedia
, qtquickcontrols2
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-07-14 03:24:28 +01:00
version = "1.2";
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-07-14 03:24:28 +01:00
sha256 = "sha256-Kpv7BY/qS0A3xFlYFhz1RRNwQVsyhOTHHGDbWRTTv1I=";
2020-12-24 05:21:19 +00:00
};
2020-12-27 09:49:17 +00:00
nativeBuildInputs = [ cmake extra-cmake-modules pkg-config ];
buildInputs = [
cmark
2021-07-14 03:24:28 +01:00
kconfig
kdbusaddons
ki18n
2020-12-27 09:49:17 +00:00
kirigami2
kitemmodels
2020-12-27 09:49:17 +00:00
knotifications
kquickimageedit
libpulseaudio
2021-07-14 03:24:28 +01:00
libquotient
libsecret
olm
qtgraphicaleffects
qtkeychain
qtmultimedia
qtquickcontrols2
qqc2-desktop-style
2020-12-27 09:49:17 +00:00
];
2020-12-24 05:21:19 +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;
};
}