2021-02-16 02:32:57 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool
|
2021-06-10 04:57:09 +02:00
|
|
|
, pkg-config, faad2, faac, a52dec, alsa-lib, fftw, lame, libavc1394
|
2010-07-28 20:01:17 +02:00
|
|
|
, libiec61883, libraw1394, libsndfile, libvorbis, libogg, libjpeg
|
2012-03-11 15:07:19 +01:00
|
|
|
, libtiff, freetype, mjpegtools, x264, gettext, openexr
|
2018-12-31 04:40:47 +01:00
|
|
|
, libXext, libXxf86vm, libXv, libXi, libX11, libXft, xorgproto, libtheora, libpng
|
2016-11-23 23:33:16 +01:00
|
|
|
, libdv, libuuid, file, nasm, perl
|
|
|
|
, fontconfig, intltool }:
|
2014-12-04 15:57:16 +01:00
|
|
|
|
2010-07-28 20:01:17 +02:00
|
|
|
stdenv.mkDerivation {
|
2021-02-16 02:32:57 +01:00
|
|
|
name = "cinelerra-cv-2021-02-14";
|
2008-10-14 16:01:50 +02:00
|
|
|
|
2019-10-07 15:49:31 +02:00
|
|
|
src = fetchFromGitHub {
|
2021-02-10 22:05:40 +01:00
|
|
|
owner = "cinelerra-cv-team";
|
|
|
|
repo = "cinelerra-cv";
|
2021-02-16 02:32:57 +01:00
|
|
|
rev = "7d0e8ede557d0cdf3606e0a8d97166a22f88d89e";
|
|
|
|
sha256 = "0n84y2wp47y89drc48cm1609gads5c6saw6c6bqcf5c5wcg1yfbj";
|
2011-06-23 00:23:45 +02:00
|
|
|
};
|
|
|
|
|
2008-10-14 16:01:50 +02:00
|
|
|
preConfigure = ''
|
2010-07-28 20:01:17 +02:00
|
|
|
find -type f -print0 | xargs --null sed -e "s@/usr/bin/perl@${perl}/bin/perl@" -i
|
2008-10-14 16:01:50 +02:00
|
|
|
./autogen.sh
|
2011-06-23 00:23:50 +02:00
|
|
|
sed -i -e "s@/usr/bin/file@${file}/bin/file@" ./configure
|
2010-07-28 20:01:17 +02:00
|
|
|
'';
|
2008-10-14 16:01:50 +02:00
|
|
|
|
2019-10-12 15:43:33 +02:00
|
|
|
## fix bug with parallel building
|
|
|
|
preBuild = ''
|
|
|
|
make -C cinelerra versioninfo.h
|
|
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-02-10 22:05:40 +01:00
|
|
|
nativeBuildInputs = [ automake autoconf libtool pkg-config file intltool ];
|
2010-07-28 20:01:17 +02:00
|
|
|
buildInputs =
|
2021-02-10 22:05:40 +01:00
|
|
|
[ faad2 faac
|
2021-06-10 04:57:09 +02:00
|
|
|
a52dec alsa-lib fftw lame libavc1394 libiec61883
|
2008-10-14 16:01:50 +02:00
|
|
|
libraw1394 libsndfile libvorbis libogg libjpeg libtiff freetype
|
2012-03-11 15:07:19 +01:00
|
|
|
mjpegtools x264 gettext openexr
|
2018-12-31 04:40:47 +01:00
|
|
|
libXext libXxf86vm libXv libXi libX11 libXft xorgproto
|
2011-06-23 00:23:50 +02:00
|
|
|
libtheora libpng libdv libuuid
|
2008-10-14 16:01:50 +02:00
|
|
|
nasm
|
|
|
|
perl
|
2021-02-10 22:05:40 +01:00
|
|
|
fontconfig
|
2010-07-28 20:01:17 +02:00
|
|
|
];
|
2008-10-14 16:01:50 +02:00
|
|
|
|
2021-02-10 22:05:40 +01:00
|
|
|
meta = with lib; {
|
2021-02-16 02:32:57 +01:00
|
|
|
description = "Professional video editing and compositing environment (community version)";
|
|
|
|
homepage = "http://cinelerra-cv.wikidot.com/";
|
2021-02-10 22:05:40 +01:00
|
|
|
maintainers = with maintainers; [ marcweber ];
|
|
|
|
license = licenses.gpl2Only;
|
2008-10-14 16:01:50 +02:00
|
|
|
};
|
|
|
|
}
|