makemkv: 1.15.3 -> 1.15.4

Upstream changes:

* Improved hanbdling of disks with mastering errors.
* Seamless joining  of TrueHD streams with overlapping frames.
* Recognizes and converts double-track Dolby Vision MKV files.
* Internal improvements and bugfixes.
This commit is contained in:
Daniël de Kok 2021-01-08 20:38:01 +01:00
parent 5772fa648c
commit 09c533a46e

View file

@ -13,21 +13,21 @@
}:
let
version = "1.15.3";
version = "1.15.4";
# Using two URLs as the first one will break as soon as a new version is released
src_bin = fetchurl {
urls = [
"http://www.makemkv.com/download/makemkv-bin-${version}.tar.gz"
"http://www.makemkv.com/download/old/makemkv-bin-${version}.tar.gz"
];
hash = "sha256-Y23aetnwqLGaBIgJ/AP0oCrh8P5jpVrcMJgmc0Oe+i8=";
hash = "sha256-Reun5hp7Rnsf6N5yL6iQ1Vbhnz/AKnt/jYRqyOK625o=";
};
src_oss = fetchurl {
urls = [
"http://www.makemkv.com/download/makemkv-oss-${version}.tar.gz"
"http://www.makemkv.com/download/old/makemkv-oss-${version}.tar.gz"
];
hash = "sha256-Qruq9YKAaNF1pDtOhptP95UjFL2NA4EuROR4v6XZHEw=";
hash = "sha256-gtBi1IRNF5ASk/ZdzkDmOuEIT9gazNaRNCftqbLEP+M=";
};
in mkDerivation {
pname = "makemkv";