mkvtoolnix: 9.9.0 -> 11.0.0 (#25349)

Add dependency on Qt’s multimedia component, required for compilation
of the GUIs since version 11.0.0.

authored by José Romildo Malaquias and committed by Joachim F cc5f1f54 81bc7839

+3 -3
+3 -3
pkgs/applications/video/mkvtoolnix/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 name = "mkvtoolnix-${version}"; 13 - version = "9.9.0"; 13 + version = "11.0.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "mbunkus"; 17 17 repo = "mkvtoolnix"; 18 18 rev = "release-${version}"; 19 - sha256 = "1jiz23s52l3gpl84yx4yw3w445jqzcimvnvibvrv3a21k29hyik1"; 19 + sha256 = "1qqa8ss2mfjzj984l9vc1fnk7czbvhbmmq53m87gnrc65351gkir"; 20 20 }; 21 21 22 22 nativeBuildInputs = [ pkgconfig autoconf automake gettext drake ruby docbook_xsl libxslt ]; ··· 26 26 libvorbis flac 27 27 ] 28 28 ++ optional stdenv.isDarwin libiconv 29 - ++ optional withGUI qt5.qtbase; 29 + ++ optionals withGUI [qt5.qtbase qt5.qtmultimedia]; 30 30 31 31 preConfigure = "./autogen.sh; patchShebangs ."; 32 32 buildPhase = "drake -j $NIX_BUILD_CORES";