Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dae3e46e16ba
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0b28ad249a45
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 15, 2019

  1. makemkv: 1.14.3 -> 1.14.4

    Changes:
    
    - Support for AACS v70
    - Many small improvements
    danieldk authored and FRidh committed Jun 15, 2019
    Copy the full SHA
    0b28ad2 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/video/makemkv/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/video/makemkv/default.nix
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@

stdenv.mkDerivation rec {
name = "makemkv-${ver}";
ver = "1.14.3";
ver = "1.14.4";
builder = ./builder.sh;

# Using two URLs as the first one will break as soon as a new version is released
@@ -13,15 +13,15 @@ stdenv.mkDerivation rec {
"http://www.makemkv.com/download/makemkv-bin-${ver}.tar.gz"
"http://www.makemkv.com/download/old/makemkv-bin-${ver}.tar.gz"
];
sha256 = "1d1b7rppbxx2b9p1smf0nlgp47j8b1z8d7q0v82kwr4qxaa0xcg0";
sha256 = "0vmmvldmwmq9g202abblj6l15kb8z3b0c6mcc03f30s2yci6ij33";
};

src_oss = fetchurl {
urls = [
"http://www.makemkv.com/download/makemkv-oss-${ver}.tar.gz"
"http://www.makemkv.com/download/old/makemkv-oss-${ver}.tar.gz"
];
sha256 = "1jgyp6qs8r0z26258mvyg9dx7qqqdqrdsziw6m24ka77zpfg4b12";
sha256 = "0n1nlq17dxcbgk9xqf7nv6zykvh91yhsjqdhq55947wc11fxjqa0";
};

nativeBuildInputs = [ pkgconfig ];