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