ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
76 lines
1.2 KiB
Nix
76 lines
1.2 KiB
Nix
{ mkDerivation
|
|
, lib
|
|
|
|
, cmake
|
|
, extra-cmake-modules
|
|
, pkg-config
|
|
, wrapQtAppsHook
|
|
|
|
, cmark
|
|
, kconfig
|
|
, kdbusaddons
|
|
, ki18n
|
|
, kio
|
|
, kirigami-addons
|
|
, kirigami2
|
|
, kitemmodels
|
|
, knotifications
|
|
, kquickcharts
|
|
, kquickimageedit
|
|
, libpulseaudio
|
|
, libquotient
|
|
, libsecret
|
|
, olm
|
|
, qcoro
|
|
, qqc2-desktop-style
|
|
, qtgraphicaleffects
|
|
, qtlocation
|
|
, qtmultimedia
|
|
, qtquickcontrols2
|
|
, sonnet
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "neochat";
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
extra-cmake-modules
|
|
pkg-config
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
cmark
|
|
kconfig
|
|
kdbusaddons
|
|
kio
|
|
ki18n
|
|
kirigami-addons
|
|
kirigami2
|
|
kitemmodels
|
|
knotifications
|
|
kquickcharts
|
|
kquickimageedit
|
|
libpulseaudio
|
|
libquotient
|
|
libsecret
|
|
olm
|
|
qcoro
|
|
qtgraphicaleffects
|
|
qtlocation
|
|
qtmultimedia
|
|
qtquickcontrols2
|
|
qqc2-desktop-style
|
|
sonnet
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A client for matrix, the decentralized communication protocol";
|
|
mainProgram = "neochat";
|
|
homepage = "https://apps.kde.org/en/neochat";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|