2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchgit, autoconf, automake, libtool
|
2010-07-28 19:01:17 +01:00
|
|
|
, pkgconfig, faad2, faac, a52dec, alsaLib, fftw, lame, libavc1394
|
|
|
|
, libiec61883, libraw1394, libsndfile, libvorbis, libogg, libjpeg
|
2012-03-11 14:07:19 +00:00
|
|
|
, libtiff, freetype, mjpegtools, x264, gettext, openexr
|
2016-11-23 22:33:16 +00:00
|
|
|
, libXext, libXxf86vm, libXv, libXi, libX11, libXft, xextproto, libtheora, libpng
|
|
|
|
, libdv, libuuid, file, nasm, perl
|
|
|
|
, fontconfig, intltool }:
|
2014-12-04 14:57:16 +00:00
|
|
|
|
2010-07-28 19:01:17 +01:00
|
|
|
stdenv.mkDerivation {
|
2018-07-20 21:58:52 +01:00
|
|
|
name = "cinelerra-unstable-2016-01-12";
|
2008-10-14 15:01:50 +01:00
|
|
|
|
2011-06-22 23:23:45 +01:00
|
|
|
src = fetchgit {
|
2014-12-04 14:57:16 +00:00
|
|
|
url = "git://git.cinelerra-cv.org/j6t/cinelerra.git";
|
2016-11-23 22:33:16 +00:00
|
|
|
rev = "454be60e201c18c1fc3f1f253a6d2184fcfc94c4";
|
|
|
|
sha256 = "1n4kshqhgnr7aivsi8dgx48phyd2nzvv4szbc82mndklvs9jfb7r";
|
2011-06-22 23:23:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# touch config.rpath: work around bug in automake 1.10 ?
|
2008-10-14 15:01:50 +01:00
|
|
|
preConfigure = ''
|
2010-07-28 19:01:17 +01:00
|
|
|
find -type f -print0 | xargs --null sed -e "s@/usr/bin/perl@${perl}/bin/perl@" -i
|
2009-12-11 13:58:23 +00:00
|
|
|
touch config.rpath
|
2008-10-14 15:01:50 +01:00
|
|
|
./autogen.sh
|
2011-06-22 23:23:50 +01:00
|
|
|
sed -i -e "s@/usr/bin/file@${file}/bin/file@" ./configure
|
2010-07-28 19:01:17 +01:00
|
|
|
'';
|
2008-10-14 15:01:50 +01:00
|
|
|
|
2010-07-28 19:01:17 +01:00
|
|
|
buildInputs =
|
|
|
|
[ automake
|
2011-06-22 23:23:50 +01:00
|
|
|
autoconf libtool pkgconfig file
|
2009-04-18 13:47:11 +01:00
|
|
|
faad2 faac
|
2008-10-14 15:01:50 +01:00
|
|
|
a52dec alsaLib fftw lame libavc1394 libiec61883
|
|
|
|
libraw1394 libsndfile libvorbis libogg libjpeg libtiff freetype
|
2012-03-11 14:07:19 +00:00
|
|
|
mjpegtools x264 gettext openexr
|
2016-11-23 22:33:16 +00:00
|
|
|
libXext libXxf86vm libXv libXi libX11 libXft xextproto
|
2011-06-22 23:23:50 +01:00
|
|
|
libtheora libpng libdv libuuid
|
2008-10-14 15:01:50 +01:00
|
|
|
nasm
|
|
|
|
perl
|
2016-11-23 22:33:16 +00:00
|
|
|
fontconfig intltool
|
2010-07-28 19:01:17 +01:00
|
|
|
];
|
2008-10-14 15:01:50 +01:00
|
|
|
|
2017-12-07 08:31:32 +00:00
|
|
|
# $ make -C cinelerra edl.o
|
2017-11-17 16:40:46 +00:00
|
|
|
# edl.C:50:25: fatal error: versioninfo.h: No such file or directory
|
2017-12-07 08:31:32 +00:00
|
|
|
enableParallelBuilding = false;
|
2016-11-23 22:33:16 +00:00
|
|
|
|
2014-12-04 14:57:16 +00:00
|
|
|
meta = {
|
2014-06-22 21:49:32 +01:00
|
|
|
description = "Video Editor";
|
2010-07-28 19:01:17 +01:00
|
|
|
homepage = http://www.cinelerra.org;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2008-10-14 15:01:50 +01:00
|
|
|
};
|
|
|
|
}
|