Skip to content

Commit

Permalink
makemkv: modernize derivation (#65608)
Browse files Browse the repository at this point in the history
makemkv: modernize derivation
  • Loading branch information
Mic92 committed Jul 31, 2019
2 parents f46b8a9 + 2240ddc commit 33c6b28
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 57 deletions.
40 changes: 0 additions & 40 deletions pkgs/applications/video/makemkv/builder.sh

This file was deleted.

43 changes: 27 additions & 16 deletions pkgs/applications/video/makemkv/default.nix
Original file line number Diff line number Diff line change
@@ -1,34 +1,45 @@
{ stdenv, fetchurl
, openssl, qt5, libGLU_combined, zlib, pkgconfig, libav
{ stdenv, mkDerivation, fetchurl, autoPatchelfHook
, ffmpeg, openssl, qtbase, zlib, pkgconfig
}:

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

let
version = "1.14.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-${ver}.tar.gz"
"http://www.makemkv.com/download/old/makemkv-bin-${ver}.tar.gz"
"http://www.makemkv.com/download/makemkv-bin-${version}.tar.gz"
"http://www.makemkv.com/download/old/makemkv-bin-${version}.tar.gz"
];
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"
"http://www.makemkv.com/download/makemkv-oss-${version}.tar.gz"
"http://www.makemkv.com/download/old/makemkv-oss-${version}.tar.gz"
];
sha256 = "0n1nlq17dxcbgk9xqf7nv6zykvh91yhsjqdhq55947wc11fxjqa0";
};
in mkDerivation {
pname = "makemkv";
inherit version;

srcs = [ src_bin src_oss ];

sourceRoot = "makemkv-oss-${version}";

nativeBuildInputs = [ autoPatchelfHook pkgconfig ];

buildInputs = [ ffmpeg openssl qtbase zlib ];

installPhase = ''
runHook preInstall
nativeBuildInputs = [ pkgconfig ];
buildInputs = [openssl qt5.qtbase libGLU_combined zlib libav];
install -Dm555 -t $out/bin out/makemkv ../makemkv-bin-${version}/bin/amd64/makemkvcon
install -D -t $out/lib out/lib{driveio,makemkv,mmbd}.so.*
install -D -t $out/share/MakeMKV ../makemkv-bin-${version}/src/share/*
libPath = stdenv.lib.makeLibraryPath [stdenv.cc.cc openssl libGLU_combined qt5.qtbase zlib ]
+ ":" + stdenv.cc.cc + "/lib64";
runHook postInstall
'';

meta = with stdenv.lib; {
description = "Convert blu-ray and dvd to mkv";
Expand Down
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4568,7 +4568,7 @@ in

mairix = callPackage ../tools/text/mairix { };

makemkv = callPackage ../applications/video/makemkv { };
makemkv = libsForQt5.callPackage ../applications/video/makemkv { };

makerpm = callPackage ../development/tools/makerpm { };

Expand Down

0 comments on commit 33c6b28

Please sign in to comment.