2021-01-17 02:09:27 +00:00
|
|
|
{ stdenv, lib, fetchurl, cmake, pkg-config
|
2016-04-13 16:15:36 +01:00
|
|
|
, zlib, gettext, libvdpau, libva, libXv, sqlite
|
2018-02-17 16:01:46 +00:00
|
|
|
, yasm, freetype, fontconfig, fribidi
|
2019-07-05 16:42:08 +01:00
|
|
|
, makeWrapper, libXext, libGLU, qttools, qtbase, wrapQtAppsHook
|
2018-01-11 18:29:31 +00:00
|
|
|
, alsaLib
|
2016-04-13 16:15:36 +01:00
|
|
|
, withX265 ? true, x265
|
2016-03-26 08:44:26 +00:00
|
|
|
, withX264 ? true, x264
|
2016-04-13 16:15:36 +01:00
|
|
|
, withXvid ? true, xvidcore
|
2016-03-26 08:44:26 +00:00
|
|
|
, withLAME ? true, lame
|
2016-03-29 13:47:18 +01:00
|
|
|
, withFAAC ? false, faac
|
2016-03-26 08:44:26 +00:00
|
|
|
, withVorbis ? true, libvorbis
|
|
|
|
, withPulse ? true, libpulseaudio
|
|
|
|
, withFAAD ? true, faad2
|
|
|
|
, withOpus ? true, libopus
|
|
|
|
, withVPX ? true, libvpx
|
2018-02-17 16:01:46 +00:00
|
|
|
, withQT ? true
|
|
|
|
, withCLI ? true
|
|
|
|
, default ? "qt5"
|
|
|
|
, withPlugins ? true
|
2016-03-26 08:44:26 +00:00
|
|
|
}:
|
2009-11-24 14:01:48 +00:00
|
|
|
|
2018-02-17 16:01:46 +00:00
|
|
|
assert withQT -> qttools != null && qtbase != null;
|
|
|
|
assert default != "qt5" -> default == "cli";
|
|
|
|
assert !withQT -> default != "qt5";
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "avidemux";
|
2020-07-08 21:32:10 +01:00
|
|
|
version = "2.7.6";
|
2014-04-09 10:06:46 +01:00
|
|
|
|
2009-11-24 08:27:18 +00:00
|
|
|
src = fetchurl {
|
2016-03-26 08:44:26 +00:00
|
|
|
url = "mirror://sourceforge/avidemux/avidemux/${version}/avidemux_${version}.tar.gz";
|
2020-07-08 21:32:10 +01:00
|
|
|
sha256 = "1kwkn976ppahrcr74bnv6sqx75pzl9y21m1mvr5ksi1m6lgp924s";
|
2009-11-24 08:27:18 +00:00
|
|
|
};
|
2014-04-09 10:06:46 +01:00
|
|
|
|
2018-04-11 19:57:06 +01:00
|
|
|
patches = [
|
|
|
|
./dynamic_install_dir.patch
|
|
|
|
./bootstrap_logging.patch
|
|
|
|
];
|
2018-02-17 16:01:46 +00:00
|
|
|
|
2019-07-05 16:42:08 +01:00
|
|
|
nativeBuildInputs =
|
2021-01-17 02:09:27 +00:00
|
|
|
[ yasm cmake pkg-config ]
|
2019-07-05 16:42:08 +01:00
|
|
|
++ lib.optional withQT wrapQtAppsHook;
|
2018-02-17 16:01:46 +00:00
|
|
|
buildInputs = [
|
|
|
|
zlib gettext libvdpau libva libXv sqlite fribidi fontconfig
|
2018-03-05 13:53:38 +00:00
|
|
|
freetype alsaLib libXext libGLU makeWrapper
|
2018-02-17 16:01:46 +00: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 10:28:13 +01:00
|
|
|
buildCommand = let
|
2021-01-15 05:42:41 +00:00
|
|
|
qtVersion = "5.${lib.versions.minor qtbase.version}";
|
2019-07-05 16:42:08 +01:00
|
|
|
wrapWith = makeWrapper: filename:
|
|
|
|
"${makeWrapper} ${filename} --set ADM_ROOT_DIR $out --prefix LD_LIBRARY_PATH : ${libXext}/lib";
|
|
|
|
wrapQtApp = wrapWith "wrapQtApp";
|
|
|
|
wrapProgram = wrapWith "wrapProgram";
|
2018-06-19 10:28:13 +01:00
|
|
|
in ''
|
2018-02-17 16:01:46 +00:00
|
|
|
unpackPhase
|
|
|
|
cd "$sourceRoot"
|
|
|
|
patchPhase
|
|
|
|
|
2020-01-02 00:29:34 +00:00
|
|
|
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH''${LD_LIBRARY_PATH:+:}${libXext}/lib"
|
2018-02-17 16:01:46 +00:00
|
|
|
${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 10:28:13 +01:00
|
|
|
${wrapProgram "$out/bin/avidemux3_cli"}
|
|
|
|
|
2021-01-15 05:42:41 +00:00
|
|
|
${lib.optionalString withQT ''
|
2019-07-05 16:42:08 +01:00
|
|
|
${wrapQtApp "$out/bin/avidemux3_qt5"}
|
|
|
|
${wrapQtApp "$out/bin/avidemux3_jobs_qt5"}
|
2018-06-19 10:28:13 +01:00
|
|
|
''}
|
|
|
|
|
2018-02-17 16:01:46 +00:00
|
|
|
ln -s "$out/bin/avidemux3_${default}" "$out/bin/avidemux"
|
|
|
|
|
|
|
|
fixupPhase
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://fixounet.free.fr/avidemux/";
|
2018-02-17 16:01:46 +00:00
|
|
|
description = "Free video editor designed for simple video editing tasks";
|
2018-07-22 20:50:19 +01:00
|
|
|
maintainers = with maintainers; [ abbradar ma27 ];
|
2018-03-06 10:58:01 +00:00
|
|
|
# "CPU not supported" errors on AArch64
|
|
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
2018-02-17 16:01:46 +00:00
|
|
|
license = licenses.gpl2;
|
2009-11-24 08:27:18 +00:00
|
|
|
};
|
|
|
|
}
|