summary refs log tree commit diff
path: root/pkgs/applications/video/kdenlive
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2010-10-05 17:44:33 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2010-10-05 17:44:33 +0000
commit673e66e3a3afb92d96fa806b7dc2e0cb615d0bd7 (patch)
tree66c52d2b0244a0179a7e390813988a9545f96270 /pkgs/applications/video/kdenlive
parent4591f1fe519e6e49cb9ba5f908c9b80975491b93 (diff)
downloadnixlib-673e66e3a3afb92d96fa806b7dc2e0cb615d0bd7.tar
nixlib-673e66e3a3afb92d96fa806b7dc2e0cb615d0bd7.tar.gz
nixlib-673e66e3a3afb92d96fa806b7dc2e0cb615d0bd7.tar.bz2
nixlib-673e66e3a3afb92d96fa806b7dc2e0cb615d0bd7.tar.lz
nixlib-673e66e3a3afb92d96fa806b7dc2e0cb615d0bd7.tar.xz
nixlib-673e66e3a3afb92d96fa806b7dc2e0cb615d0bd7.tar.zst
nixlib-673e66e3a3afb92d96fa806b7dc2e0cb615d0bd7.zip
Move most kde-extragear apps to top-level
svn path=/nixpkgs/trunk/; revision=24092
Diffstat (limited to 'pkgs/applications/video/kdenlive')
-rw-r--r--pkgs/applications/video/kdenlive/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/applications/video/kdenlive/default.nix b/pkgs/applications/video/kdenlive/default.nix
new file mode 100644
index 000000000000..8af0db2fcc88
--- /dev/null
+++ b/pkgs/applications/video/kdenlive/default.nix
@@ -0,0 +1,21 @@
+{stdenv, fetchurl, lib, cmake, qt4, perl, kdelibs, automoc4, phonon, mlt, gettext,
+shared_mime_info, soprano}:
+
+stdenv.mkDerivation {
+  name = "kdenlive-0.7.7.1";
+  src = fetchurl {
+    url = mirror://sourceforge/kdenlive/kdenlive-0.7.7.1.tar.gz;
+    sha256 = "047kpzfdmipgnnkbdhcpy5c0kqgpg7yn3qhyd7inlplmyd3i1pfx";
+  };
+
+  buildInputs = [ cmake qt4 perl kdelibs automoc4 phonon mlt gettext
+    shared_mime_info soprano ];
+
+  meta = {
+    description = "Free and open source video editor";
+    license = "GPLv2+";
+    homepage = http://www.kdenlive.org/;
+    maintainers = with stdenv.lib.maintainers; [viric];
+    platforms = with stdenv.lib.platforms; linux;
+  };
+}