about summary refs log tree commit diff
path: root/pkgs/applications/kde/arianna.nix
diff options
context:
space:
mode:
authorK900 <me@0upti.me>2023-08-24 13:59:41 +0300
committerK900 <me@0upti.me>2023-08-24 18:37:08 +0300
commite50edcb50693ef73a2eef9adfd1614b0f9a82370 (patch)
tree8fc0a9d6661e287bb55228fc334b2cc000bbb988 /pkgs/applications/kde/arianna.nix
parent9ab379753f6a7b781e025783ab77dabfb5706368 (diff)
kde/gear: 23.04.3 -> 23.08.0
Diffstat (limited to 'pkgs/applications/kde/arianna.nix')
-rw-r--r--pkgs/applications/kde/arianna.nix59
1 files changed, 59 insertions, 0 deletions
diff --git a/pkgs/applications/kde/arianna.nix b/pkgs/applications/kde/arianna.nix
new file mode 100644
index 0000000000000..e1a0998003808
--- /dev/null
+++ b/pkgs/applications/kde/arianna.nix
@@ -0,0 +1,59 @@
+{ lib
+, mkDerivation
+, cmake
+, extra-cmake-modules
+, qtbase
+, qtdeclarative
+, qtquickcontrols2
+, qtwebchannel
+, qtwebengine
+, qtwebsockets
+, baloo
+, karchive
+, kconfig
+, kcoreaddons
+, kdbusaddons
+, kfilemetadata
+, ki18n
+, kirigami-addons
+, kquickcharts
+, kwindowsystem
+, qqc2-desktop-style
+}:
+
+mkDerivation {
+  pname = "arianna";
+
+  nativeBuildInputs = [
+    cmake
+    extra-cmake-modules
+  ];
+
+  buildInputs = [
+    qtbase
+    qtdeclarative
+    qtquickcontrols2
+    qtwebchannel
+    qtwebengine
+    qtwebsockets
+    baloo
+    karchive
+    kconfig
+    kcoreaddons
+    kdbusaddons
+    kfilemetadata
+    ki18n
+    kirigami-addons
+    kquickcharts
+    kwindowsystem
+    qqc2-desktop-style
+  ];
+
+  meta = with lib; {
+    description = "An Epub Reader for Plasma and Plasma Mobile";
+    homepage = "https://invent.kde.org/graphics/arianna";
+    license = licenses.gpl3Plus;
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ Thra11 ];
+  };
+}