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

73 lines
1.4 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
, qtx11extras
, sshfs
}:
2020-10-28 08:13:31 +00:00
mkDerivation {
name = "kdeconnect-kde";
patches = [
# https://invent.kde.org/network/kdeconnect-kde/-/merge_requests/328
(fetchpatch {
url = "https://invent.kde.org/network/kdeconnect-kde/-/commit/6101ef3ad07d865958d58a3d2736f5536f1c5719.diff";
sha256 = "17mr7k13226vzcgxlmfs6q2mdc5j7vwp4iri9apmh6xlf6r591ac";
})
];
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
qtx11extras
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 ];
};
}