2019-08-06 19:25:59 +01:00
|
|
|
{ mkDerivation
|
2016-02-19 14:12:08 +00:00
|
|
|
, extra-cmake-modules
|
2020-10-28 08:13:31 +00:00
|
|
|
, fetchpatch
|
2016-02-19 14:12:08 +00:00
|
|
|
, kcmutils
|
|
|
|
, kconfigwidgets
|
|
|
|
, kdbusaddons
|
2017-10-13 13:20:39 +01:00
|
|
|
, kdoctools
|
2016-02-19 14:12:08 +00:00
|
|
|
, ki18n
|
2020-10-28 08:13:31 +00:00
|
|
|
, kiconthemes
|
|
|
|
, kio
|
|
|
|
, kirigami2
|
2016-02-19 14:12:08 +00:00
|
|
|
, knotifications
|
2020-10-28 08:13:31 +00:00
|
|
|
, kpeople
|
|
|
|
, kpeoplevcard
|
|
|
|
, kwayland
|
|
|
|
, lib
|
2016-02-19 14:12:08 +00:00
|
|
|
, libXtst
|
2020-10-28 08:13:31 +00:00
|
|
|
, libfakekey
|
2018-01-05 16:03:44 +00:00
|
|
|
, makeWrapper
|
2020-10-08 20:14:03 +01:00
|
|
|
, pulseaudio-qt
|
2020-10-28 08:13:31 +00:00
|
|
|
, qca-qt5
|
2021-08-13 12:00:02 +01:00
|
|
|
, qqc2-desktop-style
|
2020-10-28 08:13:31 +00:00
|
|
|
, qtgraphicaleffects
|
|
|
|
, qtmultimedia
|
2021-04-25 12:27:06 +01:00
|
|
|
, qtquickcontrols2
|
2020-10-28 08:13:31 +00:00
|
|
|
, qtx11extras
|
2021-05-13 13:00:00 +01:00
|
|
|
, breeze-icons
|
2020-10-28 08:13:31 +00:00
|
|
|
, sshfs
|
2021-08-13 12:00:02 +01:00
|
|
|
, wayland
|
|
|
|
, wayland-scanner
|
2014-11-03 20:55:33 +00:00
|
|
|
}:
|
2014-06-22 09:56:43 +01:00
|
|
|
|
2020-10-28 08:13:31 +00:00
|
|
|
mkDerivation {
|
2020-12-24 23:05:07 +00:00
|
|
|
pname = "kdeconnect-kde";
|
2014-06-22 09:56:43 +01:00
|
|
|
|
2016-02-19 14:12:08 +00:00
|
|
|
buildInputs = [
|
2020-10-08 20:14:03 +01:00
|
|
|
kcmutils
|
|
|
|
kconfigwidgets
|
|
|
|
kdbusaddons
|
2020-10-28 08:13:31 +00:00
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kio
|
|
|
|
kirigami2
|
2020-10-08 20:14:03 +01:00
|
|
|
knotifications
|
2020-10-28 08:13:31 +00:00
|
|
|
kpeople
|
|
|
|
kpeoplevcard
|
|
|
|
kwayland
|
|
|
|
libXtst
|
|
|
|
libfakekey
|
|
|
|
pulseaudio-qt
|
2020-10-08 20:14:03 +01:00
|
|
|
qca-qt5
|
2021-08-13 12:00:02 +01:00
|
|
|
qqc2-desktop-style
|
2020-10-28 08:13:31 +00:00
|
|
|
qtgraphicaleffects
|
|
|
|
qtmultimedia
|
2021-04-25 12:27:06 +01:00
|
|
|
qtquickcontrols2
|
2020-10-08 20:14:03 +01:00
|
|
|
qtx11extras
|
2021-08-13 12:00:02 +01:00
|
|
|
wayland
|
|
|
|
wayland-scanner
|
2021-05-13 13:00:00 +01:00
|
|
|
# otherwise buttons are blank on non-kde
|
|
|
|
breeze-icons
|
2016-02-19 14:12:08 +00:00
|
|
|
];
|
2015-09-27 16:11:01 +01:00
|
|
|
|
2020-10-28 08:13:31 +00:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools makeWrapper ];
|
2014-06-22 09:56:43 +01:00
|
|
|
|
2020-10-28 23:20:41 +00:00
|
|
|
qtWrapperArgs = [
|
|
|
|
"--prefix PATH : ${lib.makeBinPath [ sshfs ]}"
|
|
|
|
];
|
2018-01-05 16:03:44 +00:00
|
|
|
|
2017-10-13 13:20:39 +01:00
|
|
|
meta = with lib; {
|
2016-02-19 14:12:08 +00:00
|
|
|
description = "KDE Connect provides several features to integrate your phone and your computer";
|
2020-10-28 08:13:31 +00:00
|
|
|
homepage = "https://community.kde.org/KDEConnect";
|
|
|
|
license = with licenses; [ gpl2 ];
|
2017-10-13 13:20:39 +01:00
|
|
|
maintainers = with maintainers; [ fridh ];
|
2014-06-22 09:56:43 +01:00
|
|
|
};
|
|
|
|
}
|