mkvtoolnix: 19.0.0 -> 20.0.0

+4 -4
+4 -4
pkgs/applications/video/mkvtoolnix/default.nix
··· 1 { stdenv, fetchFromGitLab, pkgconfig, autoconf, automake, libiconv 2 , drake, ruby, docbook_xsl, file, xdg_utils, gettext, expat, qt5, boost 3 - , libebml, zlib, libmatroska, libogg, libvorbis, flac, libxslt 4 , withGUI ? true 5 }: 6 ··· 10 11 stdenv.mkDerivation rec { 12 name = "mkvtoolnix-${version}"; 13 - version = "19.0.0"; 14 15 src = fetchFromGitLab { 16 owner = "mbunkus"; 17 repo = "mkvtoolnix"; 18 rev = "release-${version}"; 19 - sha256 = "068g0mmi284zl9d9p9zhp55h6rj58j5c27czd3mg42kq74cwcsx9"; 20 }; 21 22 nativeBuildInputs = [ pkgconfig autoconf automake gettext drake ruby docbook_xsl libxslt ]; 23 24 buildInputs = [ 25 expat file xdg_utils boost libebml zlib libmatroska libogg 26 - libvorbis flac 27 ] 28 ++ optional stdenv.isDarwin libiconv 29 ++ optionals withGUI [qt5.qtbase qt5.qtmultimedia];
··· 1 { stdenv, fetchFromGitLab, pkgconfig, autoconf, automake, libiconv 2 , drake, ruby, docbook_xsl, file, xdg_utils, gettext, expat, qt5, boost 3 + , libebml, zlib, libmatroska, libogg, libvorbis, flac, libxslt, cmark 4 , withGUI ? true 5 }: 6 ··· 10 11 stdenv.mkDerivation rec { 12 name = "mkvtoolnix-${version}"; 13 + version = "20.0.0"; 14 15 src = fetchFromGitLab { 16 owner = "mbunkus"; 17 repo = "mkvtoolnix"; 18 rev = "release-${version}"; 19 + sha256 = "0qrjvvp0pvw9i91rh0zrxpclq7xap2dpjip0s5bm4gv14gh4l4mc"; 20 }; 21 22 nativeBuildInputs = [ pkgconfig autoconf automake gettext drake ruby docbook_xsl libxslt ]; 23 24 buildInputs = [ 25 expat file xdg_utils boost libebml zlib libmatroska libogg 26 + libvorbis flac cmark 27 ] 28 ++ optional stdenv.isDarwin libiconv 29 ++ optionals withGUI [qt5.qtbase qt5.qtmultimedia];