nixpkgs/pkgs/applications/video/makemkv/default.nix

61 lines
1.9 KiB
Nix
Raw Normal View History

{ stdenv, mkDerivation, fetchurl, autoPatchelfHook
, ffmpeg_3, openssl, qtbase, zlib, pkgconfig
2013-02-24 03:35:19 +00:00
}:
let
version = "1.15.1";
# Using two URLs as the first one will break as soon as a new version is released
2013-02-24 03:35:19 +00:00
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 = "0c9661sdlld8b1g2pk8lbn3gz7cikh9bjqss11ffkriwii1x9fw0";
2013-02-24 03:35:19 +00:00
};
2015-02-08 21:39:40 +00:00
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 = "0rm1zykqagy2g8hb7pjrc6akdsym8pgdnx66hnna161jbah3sssy";
2013-02-24 03:35:19 +00:00
};
in mkDerivation {
pname = "makemkv";
inherit version;
srcs = [ src_bin src_oss ];
sourceRoot = "makemkv-oss-${version}";
nativeBuildInputs = [ autoPatchelfHook pkgconfig ];
buildInputs = [ ffmpeg_3 openssl qtbase zlib ];
installPhase = ''
runHook preInstall
2013-02-24 03:35:19 +00: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 03:35:19 +00:00
runHook postInstall
'';
2013-02-24 03:35:19 +00:00
2014-11-22 21:24:39 +00:00
meta = with stdenv.lib; {
description = "Convert blu-ray and dvd to mkv";
2013-02-24 10:17:24 +00: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 09:26:19 +00:00
'';
2014-11-22 21:24:39 +00:00
license = licenses.unfree;
homepage = "http://makemkv.com";
platforms = [ "x86_64-linux" ];
2014-11-22 21:24:39 +00:00
maintainers = [ maintainers.titanous ];
2013-02-24 03:35:19 +00:00
};
}