3da886bf41
These are all packages that I stopped using and hence just create noise in my inbox for each change affecting them and let's face it, while I still enjoy contributing to nixpkgs, it doesn't really make sense to be listed there if I can't do much anyways. Each of these packages can be taken over by someone or removed if people think that's reasonable. Of course, if other maintainers face issues, I can answer some questions if needed & possible.
100 lines
2.9 KiB
Nix
100 lines
2.9 KiB
Nix
{ stdenv, lib, fetchurl, cmake, pkg-config
|
|
, zlib, gettext, libvdpau, libva, libXv, sqlite
|
|
, yasm, freetype, fontconfig, fribidi
|
|
, makeWrapper, libXext, libGLU, qttools, qtbase, wrapQtAppsHook
|
|
, alsa-lib
|
|
, withX265 ? true, x265
|
|
, withX264 ? true, x264
|
|
, withXvid ? true, xvidcore
|
|
, withLAME ? true, lame
|
|
, withFAAC ? false, faac
|
|
, withVorbis ? true, libvorbis
|
|
, withPulse ? true, libpulseaudio
|
|
, withFAAD ? true, faad2
|
|
, withOpus ? true, libopus
|
|
, withVPX ? true, libvpx
|
|
, withQT ? true
|
|
, withCLI ? true
|
|
, default ? "qt5"
|
|
, withPlugins ? true
|
|
}:
|
|
|
|
assert withQT -> qttools != null && qtbase != null;
|
|
assert default != "qt5" -> default == "cli";
|
|
assert !withQT -> default != "qt5";
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "avidemux";
|
|
version = "2.7.8";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/avidemux/avidemux/${version}/avidemux_${version}.tar.gz";
|
|
sha256 = "sha256-YopAT1If8oEnYHAK4+KqeOWBaw/z+2/QWsPnUkjZdAE=";
|
|
};
|
|
|
|
patches = [
|
|
./dynamic_install_dir.patch
|
|
./bootstrap_logging.patch
|
|
];
|
|
|
|
nativeBuildInputs =
|
|
[ yasm cmake pkg-config ]
|
|
++ lib.optional withQT wrapQtAppsHook;
|
|
buildInputs = [
|
|
zlib gettext libvdpau libva libXv sqlite fribidi fontconfig
|
|
freetype alsa-lib libXext libGLU makeWrapper
|
|
] ++ 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;
|
|
|
|
buildCommand = let
|
|
qtVersion = "5.${lib.versions.minor qtbase.version}";
|
|
wrapWith = makeWrapper: filename:
|
|
"${makeWrapper} ${filename} --set ADM_ROOT_DIR $out --prefix LD_LIBRARY_PATH : ${libXext}/lib";
|
|
wrapQtApp = wrapWith "wrapQtApp";
|
|
wrapProgram = wrapWith "wrapProgram";
|
|
in ''
|
|
unpackPhase
|
|
cd "$sourceRoot"
|
|
patchPhase
|
|
|
|
export LD_LIBRARY_PATH="$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
|
|
|
|
${wrapProgram "$out/bin/avidemux3_cli"}
|
|
|
|
${lib.optionalString withQT ''
|
|
${wrapQtApp "$out/bin/avidemux3_qt5"}
|
|
${wrapQtApp "$out/bin/avidemux3_jobs_qt5"}
|
|
''}
|
|
|
|
ln -s "$out/bin/avidemux3_${default}" "$out/bin/avidemux"
|
|
|
|
fixupPhase
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://fixounet.free.fr/avidemux/";
|
|
description = "Free video editor designed for simple video editing tasks";
|
|
maintainers = with maintainers; [ abbradar ];
|
|
# "CPU not supported" errors on AArch64
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
|
license = licenses.gpl2;
|
|
};
|
|
}
|