about summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorcolin <colin@uninsane.org>2022-08-25 18:55:45 -0700
committercolin <colin@uninsane.org>2022-08-25 18:55:45 -0700
commit5b78302c38e01d5bbd91c62b760508aa18c5d306 (patch)
treefbe2755b1255fb8e73396e55d41d12e94e25201a /pkgs/applications/video
parentf6c433d5a61bb05c675562a1988d0a8177f3f9a1 (diff)
makemkv: 1.16.7 -> 1.17.1
notable changes:
- improved handling for disc with mastering errors, structure protection
- minor bugfixes

full changelog: <https://www.makemkv.com/download/>
```
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
```
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/makemkv/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/video/makemkv/default.nix b/pkgs/applications/video/makemkv/default.nix
index c3d758268917c..9fd289f6fae6d 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 {