summary refs log tree commit diff
path: root/pkgs/applications/maui/vvave.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/maui/vvave.nix')
-rw-r--r--pkgs/applications/maui/vvave.nix49
1 files changed, 49 insertions, 0 deletions
diff --git a/pkgs/applications/maui/vvave.nix b/pkgs/applications/maui/vvave.nix
new file mode 100644
index 00000000000..bd5b9729201
--- /dev/null
+++ b/pkgs/applications/maui/vvave.nix
@@ -0,0 +1,49 @@
+{ lib
+, mkDerivation
+, cmake
+, extra-cmake-modules
+, applet-window-buttons
+, karchive
+, kcoreaddons
+, ki18n
+, kio
+, kirigami2
+, mauikit
+, mauikit-accounts
+, mauikit-filebrowsing
+, qtmultimedia
+, qtquickcontrols2
+, taglib
+}:
+
+mkDerivation {
+  pname = "vvave";
+
+  nativeBuildInputs = [
+    cmake
+    extra-cmake-modules
+  ];
+
+  buildInputs = [
+    applet-window-buttons
+    karchive
+    kcoreaddons
+    ki18n
+    kio
+    kirigami2
+    mauikit
+    mauikit-accounts
+    mauikit-filebrowsing
+    qtmultimedia
+    qtquickcontrols2
+    taglib
+  ];
+
+  meta = with lib; {
+    description = "Multi-platform media player";
+    homepage = "https://invent.kde.org/maui/vvave";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ onny ];
+  };
+}
+