2009-11-24 08:27:18 +00:00
|
|
|
{stdenv, fetchurl, cmake, pkgconfig, libxml2, qt4, gtk, gettext, SDL,
|
2009-11-24 14:01:48 +00:00
|
|
|
libXv, pixman, libpthreadstubs, libXau, libXdmcp, libxslt, x264,
|
|
|
|
alsaLib, lame, faac, faad2, libvorbis }:
|
|
|
|
|
|
|
|
assert stdenv ? glibc;
|
2009-11-24 08:27:18 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "avidemux-2.5.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://sourceforge/avidemux/avidemux_2.5.1.tar.gz;
|
|
|
|
sha256 = "14jwrblbli7bswx4i7b85l0s1msx8rxrqb908df3z8jxm6w4cm9g";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ cmake pkgconfig libxml2 qt4 gtk gettext SDL libXv
|
2009-11-24 14:01:48 +00:00
|
|
|
pixman libpthreadstubs libXau libXdmcp libxslt x264 alsaLib
|
|
|
|
lame faac faad2 libvorbis ];
|
2009-11-24 08:27:18 +00:00
|
|
|
|
2009-11-24 14:01:48 +00:00
|
|
|
cmakeFlags = "-DPTHREAD_INCLUDE_DIR=${stdenv.glibc}/include" +
|
2009-11-24 08:27:18 +00:00
|
|
|
" -DGETTEXT_INCLUDE_DIR=${gettext}/include" +
|
2009-12-10 22:19:52 +00:00
|
|
|
" -DSDL_INCLUDE_DIR=${SDL}/include/SDL";
|
2009-11-24 08:27:18 +00:00
|
|
|
|
2009-12-10 22:19:52 +00:00
|
|
|
NIX_LDFLAGS="-lpthread";
|
2009-11-24 14:01:48 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
cd $NIX_BUILD_TOP/$sourceRoot
|
|
|
|
mkdir build_plugins
|
|
|
|
cd build_plugins
|
|
|
|
cmake $cmakeFlags -DAVIDEMUX_INSTALL_PREFIX=$out \
|
|
|
|
-DAVIDEMUX_SOURCE_DIR=$NIX_BUILD_TOP/$sourceRoot \
|
|
|
|
-DAVIDEMUX_CORECONFIG_DIR=$NIX_BUILD_TOP/$sourceRoot/build/config ../plugins
|
|
|
|
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
'';
|
2009-11-24 08:27:18 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://fixounet.free.fr/avidemux/;
|
|
|
|
description = "Free video editor designed for simple video editing tasks";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|