Unverified Commit 743be076 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #235753 from b-eyselein/master

makemkv 1.17.3 -> 1.17.4
parents d017f8e0 79a27706
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -14,21 +14,21 @@
}:

let
  version = "1.17.3";
  version = "1.17.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"
    ];
    sha256 = "1cd633bfb381faa4f22ab57f6b75053c1b18997c223ed7988896c8c15cd1bee0";
    sha256 = "68ebc6f9baba7be4429014b73bdf6da33516a399f011e9e535eb383aff97748b";
  };
  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 = "16be3ee29c1dd3d5292f793e9f5efbcd30a59bf035de79586e9afbfa98a6a4cb";
    sha256 = "70e3599dd0a120ababa00d44c93ec8d2d001aea93e902355786ed90a7360cc99";
  };

in mkDerivation {