summary refs log tree commit diff
path: root/pkgs/applications/misc/kdeconnect
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-02-18 11:58:55 -0600
committerThomas Tuegel <ttuegel@mailbox.org>2017-02-24 16:48:32 -0600
commite5e0f8961204caa3de9b2e7a76774061e7a5d76c (patch)
treeecfd1a3df921d5e9c07df7eaf7501d9f188af677 /pkgs/applications/misc/kdeconnect
parent855690ba1d31dfe8bbda01e4b581bc3d4e112473 (diff)
downloadnixpkgs-e5e0f8961204caa3de9b2e7a76774061e7a5d76c.tar
nixpkgs-e5e0f8961204caa3de9b2e7a76774061e7a5d76c.tar.gz
nixpkgs-e5e0f8961204caa3de9b2e7a76774061e7a5d76c.tar.bz2
nixpkgs-e5e0f8961204caa3de9b2e7a76774061e7a5d76c.tar.lz
nixpkgs-e5e0f8961204caa3de9b2e7a76774061e7a5d76c.tar.xz
nixpkgs-e5e0f8961204caa3de9b2e7a76774061e7a5d76c.tar.zst
nixpkgs-e5e0f8961204caa3de9b2e7a76774061e7a5d76c.zip
Remove kde4.kdeconnect
- Already updated to KDE 5 in Nixpkgs
Diffstat (limited to 'pkgs/applications/misc/kdeconnect')
-rw-r--r--pkgs/applications/misc/kdeconnect/0.7.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/applications/misc/kdeconnect/0.7.nix b/pkgs/applications/misc/kdeconnect/0.7.nix
deleted file mode 100644
index 551d7c06468..00000000000
--- a/pkgs/applications/misc/kdeconnect/0.7.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ stdenv, fetchurl, automoc4, cmake, perl, pkgconfig
-, gettext, kdelibs, libXtst, libfakekey, makeWrapper, qca2, qjson
-}:
-
-stdenv.mkDerivation rec {
-  name = "kdeconnect-${version}";
-  version = "0.7.3";
-
-  src = fetchurl {
-    url = "http://download.kde.org/unstable/kdeconnect/${version}/src/kdeconnect-kde-${version}.tar.xz";
-    sha256 = "1vrr047bq5skxvibv5pb9ch9dxh005zmar017jzbyb9hilxr8kg4";
-  };
-
-  buildInputs = [ gettext kdelibs libXtst libfakekey makeWrapper qca2 qjson ];
-
-  nativeBuildInputs = [ automoc4 cmake perl pkgconfig ];
-
-  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 ];
-  };
-}