2018-07-20 17:44:44 -07:00
|
|
|
{ stdenv, lib, fetchurl, cmake, pkgconfig
|
2016-04-13 08:15:36 -07:00
|
|
|
, zlib, gettext, libvdpau, libva, libXv, sqlite
|
2018-02-17 08:01:46 -08:00
|
|
|
, yasm, freetype, fontconfig, fribidi
|
2018-03-05 05:53:38 -08:00
|
|
|
, makeWrapper, libXext, libGLU, qttools, qtbase
|
2018-01-11 10:29:31 -08:00
|
|
|
, alsaLib
|
2016-04-13 08:15:36 -07:00
|
|
|
, withX265 ? true, x265
|
2016-03-26 01:44:26 -07:00
|
|
|
, withX264 ? true, x264
|
2016-04-13 08:15:36 -07:00
|
|
|
, withXvid ? true, xvidcore
|
2016-03-26 01:44:26 -07:00
|
|
|
, withLAME ? true, lame
|
2016-03-29 05:47:18 -07:00
|
|
|
, withFAAC ? false, faac
|
2016-03-26 01:44:26 -07:00
|
|
|
, withVorbis ? true, libvorbis
|
|
|
|
, withPulse ? true, libpulseaudio
|
|
|
|
, withFAAD ? true, faad2
|
|
|
|
, withOpus ? true, libopus
|
|
|
|
, withVPX ? true, libvpx
|
2018-02-17 08:01:46 -08:00
|
|
|
, withQT ? true
|
|
|
|
, withCLI ? true
|
|
|
|
, default ? "qt5"
|
|
|
|
, withPlugins ? true
|
2016-03-26 01:44:26 -07:00
|
|
|
}:
|
2009-11-24 06:01:48 -08:00
|
|
|
|
2018-02-17 08:01:46 -08:00
|
|
|
assert withQT -> qttools != null && qtbase != null;
|
|
|
|
assert default != "qt5" -> default == "cli";
|
|
|
|
assert !withQT -> default != "qt5";
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "avidemux-${version}";
|
2019-04-14 01:03:34 -07:00
|
|
|
version = "2.7.3";
|
2014-04-09 02:06:46 -07:00
|
|
|
|
2009-11-24 00:27:18 -08:00
|
|
|
src = fetchurl {
|
2016-03-26 01:44:26 -07:00
|
|
|
url = "mirror://sourceforge/avidemux/avidemux/${version}/avidemux_${version}.tar.gz";
|
2019-04-14 01:03:34 -07:00
|
|
|
sha256 = "17x2mnnr5h8pp764p55l1xcn2ljnzhbj8cykajlllvk4rc4qwxld";
|
2009-11-24 00:27:18 -08:00
|
|
|
};
|
2014-04-09 02:06:46 -07:00
|
|
|
|
2018-04-11 11:57:06 -07:00
|
|
|
patches = [
|
|
|
|
./dynamic_install_dir.patch
|
|
|
|
./bootstrap_logging.patch
|
|
|
|
];
|
2018-02-17 08:01:46 -08:00
|
|
|
|
|
|
|
nativeBuildInputs = [ yasm cmake pkgconfig ];
|
|
|
|
buildInputs = [
|
|
|
|
zlib gettext libvdpau libva libXv sqlite fribidi fontconfig
|
2018-03-05 05:53:38 -08:00
|
|
|
freetype alsaLib libXext libGLU makeWrapper
|
2018-02-17 08:01:46 -08:00
|
|
|
] ++ lib.optional withX264 x264
|
|
|
|
++ lib.optional withX265 x265
|
|
|
|
++ lib.optional withXvid xvidcore
|
|
|
|
++ lib.optional withLAME lame
|
|
|
|
++ lib.optional withFAAC faac
|
|
|
|
++ lib.optional withVorbis libvorbis
|
|
|
|
++ lib.optional withPulse libpulseaudio
|
|
|
|
++ lib.optional withFAAD faad2
|
|
|
|
++ lib.optional withOpus libopus
|
|
|
|
++ lib.optionals withQT [ qttools qtbase ]
|
|
|
|
++ lib.optional withVPX libvpx;
|
|
|
|
|
2018-06-19 02:28:13 -07:00
|
|
|
buildCommand = let
|
|
|
|
qtVersion = "5.${stdenv.lib.versions.minor qtbase.version}";
|
|
|
|
wrapProgram = f: "wrapProgram ${f} --set ADM_ROOT_DIR $out --prefix LD_LIBRARY_PATH : ${libXext}/lib";
|
|
|
|
in ''
|
2018-02-17 08:01:46 -08:00
|
|
|
unpackPhase
|
|
|
|
cd "$sourceRoot"
|
|
|
|
patchPhase
|
|
|
|
|
|
|
|
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${libXext}/lib"
|
|
|
|
${stdenv.shell} bootStrap.bash \
|
|
|
|
--with-core \
|
|
|
|
${if withQT then "--with-qt" else "--without-qt"} \
|
|
|
|
${if withCLI then "--with-cli" else "--without-cli"} \
|
|
|
|
${if withPlugins then "--with-plugins" else "--without-plugins"}
|
|
|
|
|
|
|
|
mkdir $out
|
|
|
|
cp -R install/usr/* $out
|
|
|
|
|
2018-06-19 02:28:13 -07:00
|
|
|
${wrapProgram "$out/bin/avidemux3_cli"}
|
|
|
|
|
|
|
|
${stdenv.lib.optionalString withQT ''
|
|
|
|
${wrapProgram "$out/bin/avidemux3_qt5"} --prefix QT_PLUGIN_PATH : ${qtbase}/lib/qt-${qtVersion}/plugins
|
|
|
|
${wrapProgram "$out/bin/avidemux3_jobs_qt5"} --prefix QT_PLUGIN_PATH : ${qtbase}/lib/qt-${qtVersion}/plugins
|
|
|
|
''}
|
|
|
|
|
2018-02-17 08:01:46 -08:00
|
|
|
ln -s "$out/bin/avidemux3_${default}" "$out/bin/avidemux"
|
|
|
|
|
|
|
|
fixupPhase
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://fixounet.free.fr/avidemux/;
|
|
|
|
description = "Free video editor designed for simple video editing tasks";
|
2018-07-22 12:50:19 -07:00
|
|
|
maintainers = with maintainers; [ abbradar ma27 ];
|
2018-03-06 02:58:01 -08:00
|
|
|
# "CPU not supported" errors on AArch64
|
|
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
2018-02-17 08:01:46 -08:00
|
|
|
license = licenses.gpl2;
|
2009-11-24 00:27:18 -08:00
|
|
|
};
|
|
|
|
}
|