2019-07-30 21:02:24 +02:00
|
|
|
{ stdenv, mkDerivation, fetchurl, autoPatchelfHook
|
|
|
|
, ffmpeg, openssl, qtbase, zlib, pkgconfig
|
2013-02-24 04:35:19 +01:00
|
|
|
}:
|
|
|
|
|
2019-07-30 21:02:24 +02:00
|
|
|
let
|
2020-03-25 14:53:10 +01:00
|
|
|
version = "1.15.0";
|
2018-11-20 09:45:02 +01:00
|
|
|
# Using two URLs as the first one will break as soon as a new version is released
|
2013-02-24 04:35:19 +01:00
|
|
|
src_bin = fetchurl {
|
2018-11-20 09:45:02 +01:00
|
|
|
urls = [
|
2019-07-30 21:02:24 +02:00
|
|
|
"http://www.makemkv.com/download/makemkv-bin-${version}.tar.gz"
|
|
|
|
"http://www.makemkv.com/download/old/makemkv-bin-${version}.tar.gz"
|
2018-11-20 09:45:02 +01:00
|
|
|
];
|
2020-03-25 14:53:10 +01:00
|
|
|
sha256 = "1zr63fqx4qcrnrbg1f97w9mp3yzzxf0dk8pw60y2d4436vanfba4";
|
2013-02-24 04:35:19 +01:00
|
|
|
};
|
2015-02-08 22:39:40 +01:00
|
|
|
src_oss = fetchurl {
|
2018-11-20 09:45:02 +01:00
|
|
|
urls = [
|
2019-07-30 21:02:24 +02:00
|
|
|
"http://www.makemkv.com/download/makemkv-oss-${version}.tar.gz"
|
|
|
|
"http://www.makemkv.com/download/old/makemkv-oss-${version}.tar.gz"
|
2018-11-20 09:45:02 +01:00
|
|
|
];
|
2020-03-25 14:53:10 +01:00
|
|
|
sha256 = "01pdydll37inkq74874rqd5kk0maafnm1lqcv41jzgzjrfkky8d9";
|
2013-02-24 04:35:19 +01:00
|
|
|
};
|
2019-07-30 21:02:24 +02:00
|
|
|
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
|
2013-02-24 04:35:19 +01:00
|
|
|
|
2019-07-30 21:02:24 +02:00
|
|
|
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/*
|
2013-02-24 04:35:19 +01:00
|
|
|
|
2019-07-30 21:02:24 +02:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
2013-02-24 04:35:19 +01:00
|
|
|
|
2014-11-22 22:24:39 +01:00
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 12:53:46 +02:00
|
|
|
description = "Convert blu-ray and dvd to mkv";
|
2013-02-24 11:17:24 +01:00
|
|
|
longDescription = ''
|
|
|
|
makemkv is a one-click QT application that transcodes an encrypted
|
|
|
|
blu-ray or DVD disc into a more portable set of mkv files, preserving
|
|
|
|
subtitles, chapter marks, all video and audio tracks.
|
|
|
|
|
|
|
|
Program is time-limited -- it will stop functioning after 60 days. You
|
|
|
|
can always download the latest version from makemkv.com that will reset the
|
|
|
|
expiration date.
|
2013-03-01 10:26:19 +01:00
|
|
|
'';
|
2014-11-22 22:24:39 +01:00
|
|
|
license = licenses.unfree;
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://makemkv.com";
|
2018-11-07 20:26:30 +01:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2014-11-22 22:24:39 +01:00
|
|
|
maintainers = [ maintainers.titanous ];
|
2013-02-24 04:35:19 +01:00
|
|
|
};
|
|
|
|
}
|