mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
017aa88470
- AMD GPU packages: AMD removed support for the RX5x0 GPUs from ROCm, so I cannot test these packages anymore. - A small number of GUI packages: I switched back to macOS on the desktop for work reasons, so I cannot easily test these. - broot: I took over maintainership from someone else, but do not really use broot.
78 lines
2.1 KiB
Nix
78 lines
2.1 KiB
Nix
{ lib
|
|
, mkDerivation
|
|
, fetchurl
|
|
, autoPatchelfHook
|
|
, pkg-config
|
|
, ffmpeg
|
|
, openssl
|
|
, qtbase
|
|
, zlib
|
|
|
|
, withJava ? true
|
|
, jre_headless
|
|
}:
|
|
|
|
let
|
|
version = "1.16.3";
|
|
# 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"
|
|
];
|
|
hash = "sha256-G2XceMwiFu4fWT4L3HJzDB/rD3eSX6ko6RdVw72QLzg=";
|
|
};
|
|
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"
|
|
];
|
|
hash = "sha256-YUGozP9B6vmWQ4WxctSbezzu+0yLJXNKQk9TwnQF8F0=";
|
|
};
|
|
in mkDerivation {
|
|
pname = "makemkv";
|
|
inherit version;
|
|
|
|
srcs = [ src_bin src_oss ];
|
|
|
|
sourceRoot = "makemkv-oss-${version}";
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook pkg-config ];
|
|
|
|
buildInputs = [ ffmpeg openssl qtbase zlib ];
|
|
|
|
qtWrapperArgs =
|
|
let
|
|
binPath = lib.makeBinPath [ jre_headless ];
|
|
in lib.optionals withJava [
|
|
"--prefix PATH : ${binPath}"
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
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/*
|
|
|
|
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.
|
|
'';
|
|
license = licenses.unfree;
|
|
homepage = "http://makemkv.com";
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ titanous ];
|
|
};
|
|
}
|