2020-11-07 05:52:03 -08:00
|
|
|
{ stdenv
|
|
|
|
, mkDerivation
|
|
|
|
, fetchurl
|
|
|
|
, autoPatchelfHook
|
|
|
|
, pkg-config
|
|
|
|
, ffmpeg_3
|
|
|
|
, openssl
|
|
|
|
, qtbase
|
|
|
|
, zlib
|
2020-11-07 05:55:09 -08:00
|
|
|
|
|
|
|
, withJava ? true
|
|
|
|
, jre_headless
|
2013-02-23 19:35:19 -08:00
|
|
|
}:
|
|
|
|
|
2019-07-30 12:02:24 -07:00
|
|
|
let
|
2021-01-08 11:38:01 -08:00
|
|
|
version = "1.15.4";
|
2018-11-20 00:45:02 -08:00
|
|
|
# Using two URLs as the first one will break as soon as a new version is released
|
2013-02-23 19:35:19 -08:00
|
|
|
src_bin = fetchurl {
|
2018-11-20 00:45:02 -08:00
|
|
|
urls = [
|
2019-07-30 12:02:24 -07: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 00:45:02 -08:00
|
|
|
];
|
2021-01-08 11:38:01 -08:00
|
|
|
hash = "sha256-Reun5hp7Rnsf6N5yL6iQ1Vbhnz/AKnt/jYRqyOK625o=";
|
2013-02-23 19:35:19 -08:00
|
|
|
};
|
2015-02-08 13:39:40 -08:00
|
|
|
src_oss = fetchurl {
|
2018-11-20 00:45:02 -08:00
|
|
|
urls = [
|
2019-07-30 12:02:24 -07: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 00:45:02 -08:00
|
|
|
];
|
2021-01-08 11:38:01 -08:00
|
|
|
hash = "sha256-gtBi1IRNF5ASk/ZdzkDmOuEIT9gazNaRNCftqbLEP+M=";
|
2013-02-23 19:35:19 -08:00
|
|
|
};
|
2019-07-30 12:02:24 -07:00
|
|
|
in mkDerivation {
|
|
|
|
pname = "makemkv";
|
|
|
|
inherit version;
|
|
|
|
|
|
|
|
srcs = [ src_bin src_oss ];
|
|
|
|
|
|
|
|
sourceRoot = "makemkv-oss-${version}";
|
|
|
|
|
2020-11-07 05:52:03 -08:00
|
|
|
nativeBuildInputs = [ autoPatchelfHook pkg-config ];
|
2019-07-30 12:02:24 -07:00
|
|
|
|
2020-06-07 05:39:09 -07:00
|
|
|
buildInputs = [ ffmpeg_3 openssl qtbase zlib ];
|
2019-07-30 12:02:24 -07:00
|
|
|
|
2020-11-07 05:55:09 -08:00
|
|
|
qtWrapperArgs =
|
|
|
|
let
|
|
|
|
binPath = stdenv.lib.makeBinPath [ jre_headless ];
|
|
|
|
in stdenv.lib.optionals withJava [
|
|
|
|
''--prefix PATH : ${binPath}''
|
|
|
|
];
|
|
|
|
|
2019-07-30 12:02:24 -07:00
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
2013-02-23 19:35:19 -08:00
|
|
|
|
2019-07-30 12:02:24 -07: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-23 19:35:19 -08:00
|
|
|
|
2019-07-30 12:02:24 -07:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
2013-02-23 19:35:19 -08:00
|
|
|
|
2014-11-22 13:24:39 -08:00
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "Convert blu-ray and dvd to mkv";
|
2013-02-24 02:17:24 -08: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 01:26:19 -08:00
|
|
|
'';
|
2014-11-22 13:24:39 -08:00
|
|
|
license = licenses.unfree;
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://makemkv.com";
|
2018-11-07 11:26:30 -08:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2020-07-25 03:08:33 -07:00
|
|
|
maintainers = with maintainers; [ danieldk titanous ];
|
2013-02-23 19:35:19 -08:00
|
|
|
};
|
|
|
|
}
|