3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/video/makemkv/default.nix
colin 5b78302c38 makemkv: 1.16.7 -> 1.17.1
notable changes:
- improved handling for disc with mastering errors, structure protection
- minor bugfixes

full changelog: <https://www.makemkv.com/download/>
```
MakeMKV v1.17.1 (13.7.2022 )

    Small improvements and bugfixes
    Bug fixes:
        Program could hang when scanning certain protected DVD discs using CellWallk method
        Some titles were truncated on DVDs with structure protection, when using CellWallk method
        Small bugfixes
    1.17.0 regressions:
        On some UHD HEVC streams program spitted thousands of invalid "Corrupt" messages, appearing to hang
        Program crashed decoding certain AC3 (DD) streams, usually during transcoding

MakeMKV v1.17.0 (27.6.2022 )

    Improved handling for discs with mastering errors
    A new, rewritten DVD engine - much better handling for discs with structure protection
    Many internal improvements and small bugfixes
    Notable Bug fixes:
        Program failed to recognize some exotic USB drives
        Program failed on some DVD streams recorded from sattelite feed (TiVO DVD)
        Program could hang if internet connection wasn't available
```
2022-08-25 18:55:45 -07:00

89 lines
3 KiB
Nix

{ lib
, mkDerivation
, fetchurl
, autoPatchelfHook
, pkg-config
, curl
, ffmpeg
, openssl
, qtbase
, zlib
, withJava ? true
, jre_headless
}:
let
version = "1.17.1";
# 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"
];
sha256 = "sha256-B4SQiwf5/Icweg+VgQW34tN/XxDA7xoSgIVOfXwGsfM=";
};
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"
];
sha256 = "sha256-DVcrG5N9lydct11xoUKz1VVCiuvVOmQWGlAP2nrnZv4=";
};
in mkDerivation {
pname = "makemkv";
inherit version;
srcs = [ src_bin src_oss ];
sourceRoot = "makemkv-oss-${version}";
nativeBuildInputs = [ autoPatchelfHook pkg-config ];
buildInputs = [ ffmpeg openssl qtbase zlib ];
runtimeDependencies = [ (lib.getLib curl) ];
qtWrapperArgs =
let
binPath = lib.makeBinPath [ jre_headless ];
in lib.optionals withJava [
"--prefix PATH : ${binPath}"
];
installPhase = ''
runHook preInstall
install -Dm555 -t $out/bin out/makemkv out/mmccextr ../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/*
install -Dm444 -t $out/share/applications ../makemkv-oss-${version}/makemkvgui/share/makemkv.desktop
install -Dm444 -t $out/share/icons/hicolor/16x16/apps ../makemkv-oss-${version}/makemkvgui/share/icons/16x16/*
install -Dm444 -t $out/share/icons/hicolor/32x32/apps ../makemkv-oss-${version}/makemkvgui/share/icons/32x32/*
install -Dm444 -t $out/share/icons/hicolor/64x64/apps ../makemkv-oss-${version}/makemkvgui/share/icons/64x64/*
install -Dm444 -t $out/share/icons/hicolor/128x128/apps ../makemkv-oss-${version}/makemkvgui/share/icons/128x128/*
install -Dm444 -t $out/share/icons/hicolor/256x256/apps ../makemkv-oss-${version}/makemkvgui/share/icons/256x256/*
runHook postInstall
'';
meta = with lib; {
description = "Convert blu-ray and dvd to mkv";
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.
'';
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
homepage = "http://makemkv.com";
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ titanous ];
};
}