···1+{ stdenv, fetchurl, automoc4, cmake, perl, pkgconfig
2+, gettext, kdelibs, libXtst, libfakekey, makeWrapper, qca2, qjson
3+}:
4+5+stdenv.mkDerivation rec {
6+ name = "kdeconnect-${version}";
7+ version = "0.7.3";
8+9+ src = fetchurl {
10+ url = "http://download.kde.org/unstable/kdeconnect/${version}/src/kdeconnect-kde-${version}.tar.xz";
11+ sha256 = "1vrr047bq5skxvibv5pb9ch9dxh005zmar017jzbyb9hilxr8kg4";
12+ };
13+14+ buildInputs = [ gettext kdelibs libXtst libfakekey makeWrapper qca2 qjson ];
15+16+ nativeBuildInputs = [ automoc4 cmake perl pkgconfig ];
17+18+ meta = with stdenv.lib; {
19+ description = "A tool to connect and sync your devices with KDE";
20+ longDescription = ''
21+ The corresponding Android app, "KDE Connect", is available in
22+ F-Droid and Google play and has the following features:
23+24+ - Share files and URLs to KDE from any app
25+ - Clipboard share: copy from or to your desktop
26+ - Notifications sync (4.3+): Read your Android notifications from KDE
27+ - Multimedia remote control: Use your phone as a remote control
28+ - WiFi connection: no usb wire or bluetooth needed
29+ - RSA Encryption: your information is safe
30+ '';
31+ license = licenses.gpl2;
32+ homepage = https://projects.kde.org/projects/playground/base/kdeconnect-kde;
33+ platforms = platforms.linux;
34+ maintainers = [ maintainers.goibhniu ];
35+ };
36+}
+43-23
pkgs/applications/misc/kdeconnect/default.nix
···1-{ stdenv, fetchurl, automoc4, cmake, perl, pkgconfig
2-, gettext, kdelibs, libXtst, libfakekey, makeWrapper, qca2, qjson
00000000000003}:
45stdenv.mkDerivation rec {
6 name = "kdeconnect-${version}";
7- version = "0.7.3";
89 src = fetchurl {
10- url = "http://download.kde.org/unstable/kdeconnect/${version}/src/kdeconnect-kde-${version}.tar.xz";
11- sha256 = "1vrr047bq5skxvibv5pb9ch9dxh005zmar017jzbyb9hilxr8kg4";
12 };
1314- buildInputs = [ gettext kdelibs libXtst libfakekey makeWrapper qca2 qjson ];
000000000001516- nativeBuildInputs = [ automoc4 cmake perl pkgconfig ];
0001718- meta = with stdenv.lib; {
19- description = "A tool to connect and sync your devices with KDE";
20- longDescription = ''
21- The corresponding Android app, "KDE Connect", is available in
22- F-Droid and Google play and has the following features:
2324- - Share files and URLs to KDE from any app
25- - Clipboard share: copy from or to your desktop
26- - Notifications sync (4.3+): Read your Android notifications from KDE
27- - Multimedia remote control: Use your phone as a remote control
28- - WiFi connection: no usb wire or bluetooth needed
29- - RSA Encryption: your information is safe
30- '';
31- license = licenses.gpl2;
32- homepage = https://projects.kde.org/projects/playground/base/kdeconnect-kde;
33- platforms = platforms.linux;
34- maintainers = [ maintainers.goibhniu ];
35 };
036}