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

66 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
, qtquickcontrols2
, qtmultimedia
, 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
, 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-02-24 00:54:28 +00:00
version = "1.1.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-02-24 00:54:28 +00:00
sha256 = "sha256-HvLPsU+fxlyPDP7i9OSnZ/C1RjouOQCp+4WCl6FlFJo=";
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
qtgraphicaleffects
2020-12-27 09:49:17 +00:00
olm
libsecret
cmark
kirigami2
kitemmodels
2020-12-27 09:49:17 +00:00
ki18n
knotifications
kdbusaddons
kconfig
libquotient
kquickimageedit
libpulseaudio
];
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;
};
}