nixpkgs/pkgs/applications/kde/kdeconnect-kde.nix

70 lines
1.2 KiB
Nix
Raw Normal View History

{ 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 12:20:39 +00: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
, makeWrapper
, pulseaudio-qt
2020-10-28 08:13:31 +00:00
, qca-qt5
, qtgraphicaleffects
, qtmultimedia
, qtquickcontrols2
2020-10-28 08:13:31 +00:00
, qtx11extras
2021-05-13 12:00:00 +00:00
, breeze-icons
2020-10-28 08:13:31 +00:00
, sshfs
}:
2020-10-28 08:13:31 +00:00
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kdeconnect-kde";
2016-02-19 14:12:08 +00:00
buildInputs = [
kcmutils
kconfigwidgets
kdbusaddons
2020-10-28 08:13:31 +00:00
ki18n
kiconthemes
kio
kirigami2
knotifications
2020-10-28 08:13:31 +00:00
kpeople
kpeoplevcard
kwayland
libXtst
libfakekey
pulseaudio-qt
qca-qt5
2020-10-28 08:13:31 +00:00
qtgraphicaleffects
qtmultimedia
qtquickcontrols2
qtx11extras
2021-05-13 12:00:00 +00:00
# otherwise buttons are blank on non-kde
breeze-icons
2016-02-19 14:12:08 +00:00
];
2020-10-28 08:13:31 +00:00
nativeBuildInputs = [ extra-cmake-modules kdoctools makeWrapper ];
qtWrapperArgs = [
"--prefix PATH : ${lib.makeBinPath [ sshfs ]}"
];
2017-10-13 12:20:39 +00: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 12:20:39 +00:00
maintainers = with maintainers; [ fridh ];
};
}