From 5b78302c38e01d5bbd91c62b760508aa18c5d306 Mon Sep 17 00:00:00 2001 From: colin Date: Thu, 25 Aug 2022 18:55:45 -0700 Subject: [PATCH] makemkv: 1.16.7 -> 1.17.1 notable changes: - improved handling for disc with mastering errors, structure protection - minor bugfixes full changelog: ``` MakeMKV v1.17.1 (13.7.2022 ) Small improvements and bugfixes Bug fixes: Program could hang when scanning certain protected DVD discs using CellWallk method Some titles were truncated on DVDs with structure protection, when using CellWallk method Small bugfixes 1.17.0 regressions: On some UHD HEVC streams program spitted thousands of invalid "Corrupt" messages, appearing to hang Program crashed decoding certain AC3 (DD) streams, usually during transcoding MakeMKV v1.17.0 (27.6.2022 ) Improved handling for discs with mastering errors A new, rewritten DVD engine - much better handling for discs with structure protection Many internal improvements and small bugfixes Notable Bug fixes: Program failed to recognize some exotic USB drives Program failed on some DVD streams recorded from sattelite feed (TiVO DVD) Program could hang if internet connection wasn't available ``` --- pkgs/applications/video/makemkv/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/makemkv/default.nix b/pkgs/applications/video/makemkv/default.nix index c3d758268917..9fd289f6fae6 100644 --- a/pkgs/applications/video/makemkv/default.nix +++ b/pkgs/applications/video/makemkv/default.nix @@ -14,21 +14,21 @@ }: let - version = "1.16.7"; + version = "1.17.1"; # 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" ]; - sha256 = "sha256-YjsYW2MmzDZqOMdYlqE0dZ399Qq8hJRQ9BCViNexLHs="; + sha256 = "sha256-B4SQiwf5/Icweg+VgQW34tN/XxDA7xoSgIVOfXwGsfM="; }; 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" ]; - sha256 = "sha256-TL0PRP/pDg16qsbYi9RYyD0egNDaxuApmR86hiR/Rq8="; + sha256 = "sha256-DVcrG5N9lydct11xoUKz1VVCiuvVOmQWGlAP2nrnZv4="; }; in mkDerivation {