mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
448ed088eb
22.02:dd4ef2e4ac
21.12:041a5ff590
74 lines
1.3 KiB
Nix
74 lines
1.3 KiB
Nix
{ mkDerivation
|
|
, lib
|
|
, fetchFromGitLab
|
|
, pkg-config
|
|
, cmake
|
|
, cmark
|
|
, extra-cmake-modules
|
|
, kconfig
|
|
, kdbusaddons
|
|
, ki18n
|
|
, kio
|
|
, kirigami2
|
|
, kitemmodels
|
|
, knotifications
|
|
, kquickimageedit
|
|
, libpulseaudio
|
|
, libquotient
|
|
, libsecret
|
|
, olm
|
|
, qcoro
|
|
, qqc2-desktop-style
|
|
, qtgraphicaleffects
|
|
, qtkeychain
|
|
, qtmultimedia
|
|
, qtquickcontrols2
|
|
, sonnet
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "neochat";
|
|
version = "22.02";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "invent.kde.org";
|
|
owner = "network";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-7EBnHuwpyJ/bGrCldZHWOwcnJWDIDaNWZXHkCYkOTjs=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules pkg-config ];
|
|
|
|
buildInputs = [
|
|
cmark
|
|
kconfig
|
|
kdbusaddons
|
|
kio
|
|
ki18n
|
|
kirigami2
|
|
kitemmodels
|
|
knotifications
|
|
kquickimageedit
|
|
libpulseaudio
|
|
libquotient
|
|
libsecret
|
|
olm
|
|
qcoro
|
|
qtgraphicaleffects
|
|
qtkeychain
|
|
qtmultimedia
|
|
qtquickcontrols2
|
|
qqc2-desktop-style
|
|
sonnet
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A client for matrix, the decentralized communication protocol.";
|
|
homepage = "https://apps.kde.org/en/neochat";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|