Merge pull request #28588 from romildo/upd.mkvtoolnix

mkvtoolnix: 14.0.0 -> 15.0.0, libebml: 1.3.4 -> 1.3.5
This commit is contained in:
Jörg Thalheim 2017-08-26 15:41:48 +01:00 committed by GitHub
commit 74bf7b78ca
2 changed files with 5 additions and 5 deletions

View file

@ -10,13 +10,13 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "mkvtoolnix-${version}";
version = "14.0.0";
version = "15.0.0";
src = fetchFromGitHub {
owner = "mbunkus";
repo = "mkvtoolnix";
rev = "release-${version}";
sha256 = "1ygc2qrd074vz2yw4iqml5ir31kkvkv7pz3hcfy423p9s06xi1k2";
sha256 = "06n0hbp484zpsjvnzp6p0nzzssym3illxdicn3y1jf8gy971rxi0";
};
nativeBuildInputs = [ pkgconfig autoconf automake gettext drake ruby docbook_xsl libxslt ];

View file

@ -1,11 +1,11 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libebml-1.3.4";
name = "libebml-1.3.5";
src = fetchurl {
url = "http://dl.matroska.org/downloads/libebml/${name}.tar.bz2";
sha256 = "11zka6z9ncywyjr1gfm5cnii33ln7y3w6s86kiacchip2g7kw3f5";
url = "http://dl.matroska.org/downloads/libebml/${name}.tar.xz";
sha256 = "005a0ipqnfbsq47zrc61zszi439jw32q5xd6dc1jyb3lc0zl266q";
};
meta = with stdenv.lib; {