Merge pull request #16815 from romildo/upd.mkvtoolnix

mkvtoolnix: 8.9.0 -> 9.2.0
This commit is contained in:
Tuomas Tynkkynen 2016-07-10 04:56:59 +03:00 committed by GitHub
commit 19146cefa1

View File

@ -1,4 +1,4 @@
{ stdenv, fetchgit, pkgconfig, autoconf, automake { stdenv, fetchFromGitHub, pkgconfig, autoconf, automake
, ruby, file, xdg_utils, gettext, expat, qt5, boost , ruby, file, xdg_utils, gettext, expat, qt5, boost
, libebml, zlib, libmatroska, libogg, libvorbis, flac , libebml, zlib, libmatroska, libogg, libvorbis, flac
, withGUI ? true , withGUI ? true
@ -10,18 +10,19 @@ with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "mkvtoolnix-${version}"; name = "mkvtoolnix-${version}";
version = "8.9.0"; version = "9.2.0";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/mbunkus/mkvtoolnix.git"; owner = "mbunkus";
rev = "54e6b52b3dde07f89da4542997ef059e18802128"; repo = "mkvtoolnix";
sha256 = "1gipydk1xisqy110rr38dgjzpxl8zxbm12kf7b2f4xh4iw17j0k2"; rev = "release-${version}";
sha256 = "02w3161iqaijs3bz5w2wily9nz55xnhq1bdm2s5qi8v3sbcqd6df";
}; };
nativeBuildInputs = [ gettext ruby ]; nativeBuildInputs = [ pkgconfig autoconf automake gettext ruby ];
buildInputs = [ buildInputs = [
pkgconfig autoconf automake expat expat
file xdg_utils boost libebml zlib file xdg_utils boost libebml zlib
libmatroska libogg libvorbis flac libmatroska libogg libvorbis flac
(optional withGUI qt5.qtbase) (optional withGUI qt5.qtbase)