a6238bce68
- added support for vp8 (libvpx) - added support for xvid - added support for libva output svn path=/nixpkgs/trunk/; revision=33447
44 lines
1.4 KiB
Nix
44 lines
1.4 KiB
Nix
{stdenv, fetchurl, cmake, pkgconfig, libxml2, qt4, gtk, gettext, SDL,
|
|
libXv, pixman, libpthreadstubs, libXau, libXdmcp, libxslt, x264,
|
|
alsaLib, lame, faac, faad2, libvorbis, yasm, libvpx, xvidcore, libva }:
|
|
|
|
assert stdenv ? glibc;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "avidemux-2.5.6";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/avidemux/avidemux_2.5.6.tar.gz;
|
|
sha256 = "12wvxz0n2g85f079d8mdkkp2zm279d34m9v7qgcqndh48cn7znnn";
|
|
};
|
|
|
|
buildInputs = [ cmake pkgconfig libxml2 qt4 gtk gettext SDL libXv
|
|
pixman libpthreadstubs libXau libXdmcp libxslt x264 alsaLib
|
|
lame faac faad2 libvorbis yasm libvpx xvidcore libva ];
|
|
|
|
cmakeFlags = "-DPTHREAD_INCLUDE_DIR=${stdenv.glibc}/include" +
|
|
" -DGETTEXT_INCLUDE_DIR=${gettext}/include" +
|
|
" -DSDL_INCLUDE_DIR=${SDL}/include/SDL";
|
|
|
|
NIX_LDFLAGS="-lpthread";
|
|
|
|
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
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|