summary refs log tree commit diff
path: root/pkgs/applications/misc/kdeconnect
diff options
context:
space:
mode:
authorCillian de Róiste <cillian.deroiste@gmail.com>2014-06-22 10:56:43 +0200
committerCillian de Róiste <cillian.deroiste@gmail.com>2014-06-22 10:56:43 +0200
commit15166ca5c2447e9ea7971c2648ca6ba0128f13fc (patch)
tree5b8de82743f10dda602eb816e35354b9fa78c6ea /pkgs/applications/misc/kdeconnect
parent888f47b21b44d1b82ecb3437650461c767dc83e2 (diff)
downloadnixpkgs-15166ca5c2447e9ea7971c2648ca6ba0128f13fc.tar
nixpkgs-15166ca5c2447e9ea7971c2648ca6ba0128f13fc.tar.gz
nixpkgs-15166ca5c2447e9ea7971c2648ca6ba0128f13fc.tar.bz2
nixpkgs-15166ca5c2447e9ea7971c2648ca6ba0128f13fc.tar.lz
nixpkgs-15166ca5c2447e9ea7971c2648ca6ba0128f13fc.tar.xz
nixpkgs-15166ca5c2447e9ea7971c2648ca6ba0128f13fc.tar.zst
nixpkgs-15166ca5c2447e9ea7971c2648ca6ba0128f13fc.zip
Add KDE Connect: A tool to connect and sync your devices with KDE
Diffstat (limited to 'pkgs/applications/misc/kdeconnect')
-rw-r--r--pkgs/applications/misc/kdeconnect/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/applications/misc/kdeconnect/default.nix b/pkgs/applications/misc/kdeconnect/default.nix
new file mode 100644
index 00000000000..70f3855c3d6
--- /dev/null
+++ b/pkgs/applications/misc/kdeconnect/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchurl, gettext, kdelibs, makeWrapper, qca2, qca2_ossl, qjson }:
+
+stdenv.mkDerivation rec {
+  name = "kdeconnect-${version}";
+  version = "0.5.2.1";
+
+  src = fetchurl {
+    url = "http://download.kde.org/unstable/kdeconnect/0.5.2/src/kdeconnect-kde-${version}.tar.xz";
+    sha256 = "0g632ha7xcqf839c4h0dz5637bz6gnn2gz76dc0qq09zbrq49i08";
+  };
+
+  buildInputs = [ gettext kdelibs makeWrapper qca2 qca2_ossl qjson ];
+
+  postInstall = ''
+    wrapProgram $out/lib/kde4/libexec/kdeconnectd --prefix QT_PLUGIN_PATH : ${qca2_ossl}/lib/qt4/plugins
+  '';
+
+  meta = with stdenv.lib; {
+    description = "A tool to connect and sync your devices with KDE";
+    longDescription = ''
+        The corresponding Android app, "KDE Connect", is available in
+        F-Droid and Google play and has the following features:
+
+        - Share files and URLs to KDE from any app
+        - Clipboard share: copy from or to your desktop
+        - Notifications sync (4.3+): Read your Android notifications from KDE
+        - Multimedia remote control: Use your phone as a remote control
+        - WiFi connection: no usb wire or bluetooth needed
+        - RSA Encryption: your information is safe 
+    '';
+    license = licenses.gpl2;
+    homepage = https://projects.kde.org/projects/playground/base/kdeconnect-kde;
+    platforms = platforms.linux;
+    maintainers = [ maintainers.goibhniu ];
+  };
+}