summary refs log tree commit diff
path: root/pkgs/applications/kde/kdenlive.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-02-25 14:34:51 -0600
committerThomas Tuegel <ttuegel@mailbox.org>2017-02-27 11:49:30 -0600
commit8be4bd7416ca977a6b8513957513355f01c397cc (patch)
treee99fc31c6b51c9712d6c307110524ed5808324e2 /pkgs/applications/kde/kdenlive.nix
parente50ba7041126a5a4fbc81192739e36076010beeb (diff)
downloadnixlib-8be4bd7416ca977a6b8513957513355f01c397cc.tar
nixlib-8be4bd7416ca977a6b8513957513355f01c397cc.tar.gz
nixlib-8be4bd7416ca977a6b8513957513355f01c397cc.tar.bz2
nixlib-8be4bd7416ca977a6b8513957513355f01c397cc.tar.lz
nixlib-8be4bd7416ca977a6b8513957513355f01c397cc.tar.xz
nixlib-8be4bd7416ca977a6b8513957513355f01c397cc.tar.zst
nixlib-8be4bd7416ca977a6b8513957513355f01c397cc.zip
kdeApplications: Move out of desktops/kde-5
- There is no such thing as KDE 5
Diffstat (limited to 'pkgs/applications/kde/kdenlive.nix')
-rw-r--r--pkgs/applications/kde/kdenlive.nix82
1 files changed, 82 insertions, 0 deletions
diff --git a/pkgs/applications/kde/kdenlive.nix b/pkgs/applications/kde/kdenlive.nix
new file mode 100644
index 000000000000..071ec21bbd01
--- /dev/null
+++ b/pkgs/applications/kde/kdenlive.nix
@@ -0,0 +1,82 @@
+{ kdeApp
+, kdeWrapper
+, lib
+, extra-cmake-modules
+, kdoctools
+, qtscript
+, kactivities
+, kconfig
+, kcrash
+, kguiaddons
+, kiconthemes
+, ki18n
+, kinit
+, kio
+, kio-extras
+, kwindowsystem
+, kdbusaddons
+, plasma-framework
+, knotifications
+, knewstuff
+, karchive
+, knotifyconfig
+, kplotting
+, ktextwidgets
+, mlt
+, shared_mime_info
+, libv4l
+, kfilemetadata
+, ffmpeg
+, phonon-backend-vlc
+, qtquickcontrols
+}:
+
+let
+unwrapped = kdeApp {
+  name = "kdenlive";
+  nativeBuildInputs = [
+    extra-cmake-modules
+    kdoctools
+  ];
+  buildInputs = [
+    qtscript
+    kconfig
+    kcrash
+    kguiaddons
+    kiconthemes
+    kinit
+    kdbusaddons
+    knotifications
+    knewstuff
+    karchive
+    knotifyconfig
+    kplotting
+    ktextwidgets
+    mlt
+    shared_mime_info
+    libv4l
+    ffmpeg
+  ];
+  propagatedBuildInputs = [
+    kactivities
+    ki18n
+    kio
+    kio-extras
+    kwindowsystem
+    kfilemetadata
+    plasma-framework
+    phonon-backend-vlc
+    qtquickcontrols
+  ];
+  enableParallelBuilding = true;
+  meta = {
+    license = with lib.licenses; [ gpl2Plus ];
+  };
+};
+in
+kdeWrapper
+{
+  inherit unwrapped;
+  targets = [ "bin/kdenlive" ];
+  paths = [ kinit ];
+}