about summary refs log tree commit diff
path: root/pkgs/applications/plasma-mobile/kweather.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/plasma-mobile/kweather.nix')
-rw-r--r--pkgs/applications/plasma-mobile/kweather.nix48
1 files changed, 0 insertions, 48 deletions
diff --git a/pkgs/applications/plasma-mobile/kweather.nix b/pkgs/applications/plasma-mobile/kweather.nix
deleted file mode 100644
index d6a1f999ce65..000000000000
--- a/pkgs/applications/plasma-mobile/kweather.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-{ lib
-, mkDerivation
-
-, cmake
-, extra-cmake-modules
-
-, kconfig
-, kholidays
-, ki18n
-, kirigami-addons
-, kirigami2
-, knotifications
-, kquickcharts
-, kweathercore
-, plasma-framework
-, qtcharts
-, qtquickcontrols2
-}:
-
-mkDerivation rec {
-  pname = "kweather";
-
-  nativeBuildInputs = [
-    cmake
-    extra-cmake-modules
-  ];
-
-  buildInputs = [
-    kconfig
-    kholidays
-    ki18n
-    kirigami-addons
-    kirigami2
-    knotifications
-    kquickcharts
-    kweathercore
-    plasma-framework
-    qtcharts
-    qtquickcontrols2
-  ];
-
-  meta = with lib; {
-    description = "Weather application for Plasma Mobile";
-    homepage = "https://invent.kde.org/plasma-mobile/kweather";
-    license = with licenses; [ gpl2Plus cc-by-40 ];
-    maintainers = with maintainers; [ samueldr ];
-  };
-}