Unverified Commit 2681c1c4 authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

makemkv: 1.18.1 -> 1.18.2 (#447725)

parents 30ef0997 c7d533ba
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -18,21 +18,21 @@
}:

let
  version = "1.18.1";
  version = "1.18.2";
  # 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-sWV2ZR6t7DWF6BeEOioaDryqcTuJ3R4CDYsdBW3bL9Y=";
    hash = "sha256-v8THzrwPAEl2cf/Vbmo08HcKnmr37/LwEn76FD8oY24=";
  };
  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-3Efu+x5o99U55LB5u5POZBRBBK0jPeVoGJOYEOzQO3s=";
    hash = "sha256-uUl/VVXCV/XTx/GLarA8dM/z6kQ36ANJ1hjRFb9fpEU=";
  };
in
stdenv.mkDerivation {