about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2020-10-28 16:13:31 +0800
committerPeter Hoeg <peter@hoeg.com>2020-10-30 22:34:02 +0800
commit0d25246f4dd651f9a82c7c38a872b6042901c89e (patch)
tree36e87f628d9eb91f6937a8cf0b5385bb333123c0 /pkgs/applications/misc
parentd87b88361a5e4bca4f61871bea4fe7fa6019600c (diff)
kdeconnect: part of kdeApplications
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/kdeconnect/default.nix82
1 files changed, 0 insertions, 82 deletions
diff --git a/pkgs/applications/misc/kdeconnect/default.nix b/pkgs/applications/misc/kdeconnect/default.nix
deleted file mode 100644
index d042f011bb78f..0000000000000
--- a/pkgs/applications/misc/kdeconnect/default.nix
+++ /dev/null
@@ -1,82 +0,0 @@
-{ mkDerivation
-, lib
-, fetchurl
-, fetchpatch
-, extra-cmake-modules
-, kcmutils
-, kconfigwidgets
-, kdbusaddons
-, kdoctools
-, kiconthemes
-, ki18n
-, knotifications
-, qca-qt5
-, libfakekey
-, libXtst
-, qtx11extras
-, qtmultimedia
-, qtgraphicaleffects
-, sshfs
-, makeWrapper
-, kwayland
-, kio
-, kpeoplevcard
-, kpeople
-, kirigami2
-, pulseaudio-qt
-}:
-
-mkDerivation rec {
-  pname = "kdeconnect";
-  version = "20.08.2";
-
-  src = fetchurl {
-    url = "https://download.kde.org/stable/release-service/${version}/src/${pname}-kde-${version}.tar.xz";
-    sha256 = "0rzfnkgkv759d4pa16qk0sw87wqzwgkd99yzrzfy2zcq423f6hvd";
-  };
-
-  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";
-    })
-  ];
-
-  buildInputs = [
-    libfakekey
-    libXtst
-    qtmultimedia
-    qtgraphicaleffects
-    pulseaudio-qt
-    kpeoplevcard
-    kpeople
-    kirigami2
-    ki18n
-    kiconthemes
-    kcmutils
-    kconfigwidgets
-    kdbusaddons
-    knotifications
-    qca-qt5
-    qtx11extras
-    makeWrapper
-    kwayland
-    kio
-  ];
-
-  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
-
-  postInstall = ''
-    wrapProgram $out/libexec/kdeconnectd --prefix PATH : ${lib.makeBinPath [ sshfs ]}
-  '';
-
-  enableParallelBuilding = true;
-
-  meta = with lib; {
-    description = "KDE Connect provides several features to integrate your phone and your computer";
-    homepage    = "https://community.kde.org/KDEConnect";
-    license     = with licenses; [ gpl2 ];
-    maintainers = with maintainers; [ fridh ];
-  };
-}