summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2008-10-14 14:01:50 +0000
committerMarc Weber <marco-oweber@gmx.de>2008-10-14 14:01:50 +0000
commit5a4a28e4379968f89aa44c81f90c450e3484ff66 (patch)
treec3a751701d69e70bf2b4d570d33c7230b17ab110 /pkgs/applications/video
parent07fc484a9295f07a92876484295904b9d77a8a6b (diff)
added cinelerra (video editing application)
svn path=/nixpkgs/trunk/; revision=13068
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/cinelerra/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/applications/video/cinelerra/default.nix b/pkgs/applications/video/cinelerra/default.nix
new file mode 100644
index 000000000000..501c7c33df11
--- /dev/null
+++ b/pkgs/applications/video/cinelerra/default.nix
@@ -0,0 +1,34 @@
+args:
+args.stdenv.mkDerivation {
+ name = "cinelerra-git";
+
+ src = args.sourceByName "cinelerra";
+
+ perl = args.perl;
+
+ preConfigure = ''
+ find -type f -print0 | xargs --null sed -e "s@/usr/bin/perl@$perl/bin/perl@" -i
+ ./autogen.sh
+ '';
+ configureOptions = ["--enable-freetype2"];
+
+ buildInputs =(with args; [
+ automake autoconf libtool pkgconfig
+ X11 faad2 faac
+ a52dec alsaLib fftw lame libavc1394 libiec61883
+ libraw1394 libsndfile libvorbis libogg libjpeg libtiff freetype
+ mjpegtools x264 gettext openexr esound
+ #
+ libXxf86vm libXv
+ libtheora libpng libdv
+ nasm
+ perl
+ e2fsprogs
+ ]);
+
+ meta = {
+ description = "Cinelerra - Video Editor";
+ homepage = http://www.cinelerra.org;
+ license = "GPLv2";
+ };
+}