nixpkgs/pkgs/applications/networking/instant-messengers/neochat/default.nix

68 lines
1.2 KiB
Nix
Raw Normal View History

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