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

50 lines
1.6 KiB
Nix
Raw Normal View History

2013-02-24 03:35:19 +00:00
{ stdenv, fetchurl
, openssl, qt5, libGLU_combined, zlib, pkgconfig, libav
2013-02-24 03:35:19 +00:00
}:
stdenv.mkDerivation rec {
name = "makemkv-${ver}";
2018-11-19 09:44:30 +00:00
ver = "1.14.1";
2013-02-24 03:35:19 +00:00
builder = ./builder.sh;
# 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-${ver}.tar.gz"
"http://www.makemkv.com/download/old/makemkv-bin-${ver}.tar.gz"
];
2018-11-19 09:44:30 +00:00
sha256 = "1n4gjb1531gkvnjzipw63v3zdxmrq5nai9nn6m2ix3lskksjrrhp";
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-${ver}.tar.gz"
"http://www.makemkv.com/download/old/makemkv-oss-${ver}.tar.gz"
];
2018-11-19 09:44:30 +00:00
sha256 = "0ysb0nm11vp2ni838p5q3gqan5nrqbr7rz0h24j8p62827pib3pw";
2013-02-24 03:35:19 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [openssl qt5.qtbase libGLU_combined zlib libav];
2013-02-24 03:35:19 +00:00
libPath = stdenv.lib.makeLibraryPath [stdenv.cc.cc openssl libGLU_combined qt5.qtbase zlib ]
+ ":" + stdenv.cc.cc + "/lib64";
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;
2013-02-24 03:35:19 +00:00
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
};
}