Merge pull request #16815 from romildo/upd.mkvtoolnix

mkvtoolnix: 8.9.0 -> 9.2.0

authored by Tuomas Tynkkynen and committed by GitHub 19146cef 931706cd

+9 -8
+9 -8
pkgs/applications/video/mkvtoolnix/default.nix
··· 1 - { stdenv, fetchgit, pkgconfig, autoconf, automake 2 , ruby, file, xdg_utils, gettext, expat, qt5, boost 3 , libebml, zlib, libmatroska, libogg, libvorbis, flac 4 , withGUI ? true ··· 10 11 stdenv.mkDerivation rec { 12 name = "mkvtoolnix-${version}"; 13 - version = "8.9.0"; 14 15 - src = fetchgit { 16 - url = "https://github.com/mbunkus/mkvtoolnix.git"; 17 - rev = "54e6b52b3dde07f89da4542997ef059e18802128"; 18 - sha256 = "1gipydk1xisqy110rr38dgjzpxl8zxbm12kf7b2f4xh4iw17j0k2"; 19 }; 20 21 - nativeBuildInputs = [ gettext ruby ]; 22 23 buildInputs = [ 24 - pkgconfig autoconf automake expat 25 file xdg_utils boost libebml zlib 26 libmatroska libogg libvorbis flac 27 (optional withGUI qt5.qtbase)
··· 1 + { stdenv, fetchFromGitHub, pkgconfig, autoconf, automake 2 , ruby, file, xdg_utils, gettext, expat, qt5, boost 3 , libebml, zlib, libmatroska, libogg, libvorbis, flac 4 , withGUI ? true ··· 10 11 stdenv.mkDerivation rec { 12 name = "mkvtoolnix-${version}"; 13 + version = "9.2.0"; 14 15 + src = fetchFromGitHub { 16 + owner = "mbunkus"; 17 + repo = "mkvtoolnix"; 18 + rev = "release-${version}"; 19 + sha256 = "02w3161iqaijs3bz5w2wily9nz55xnhq1bdm2s5qi8v3sbcqd6df"; 20 }; 21 22 + nativeBuildInputs = [ pkgconfig autoconf automake gettext ruby ]; 23 24 buildInputs = [ 25 + expat 26 file xdg_utils boost libebml zlib 27 libmatroska libogg libvorbis flac 28 (optional withGUI qt5.qtbase)