2013-02-24 03:35:19 +00:00
|
|
|
{ stdenv, fetchurl
|
2014-10-26 01:11:20 +01:00
|
|
|
, openssl, qt4, mesa, zlib, pkgconfig, libav
|
2013-02-24 03:35:19 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "makemkv-${ver}";
|
2015-02-08 21:39:40 +00:00
|
|
|
ver = "1.9.1";
|
2013-02-24 03:35:19 +00:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
|
|
|
src_bin = fetchurl {
|
|
|
|
url = "http://www.makemkv.com/download/makemkv-bin-${ver}.tar.gz";
|
2015-02-08 21:39:40 +00:00
|
|
|
sha256 = "0458ilchi64q8yw4kxck565anpn6lf5awrnkz17bk38qdgp0i2nq";
|
2013-02-24 03:35:19 +00:00
|
|
|
};
|
|
|
|
|
2015-02-08 21:39:40 +00:00
|
|
|
src_oss = fetchurl {
|
2013-02-24 03:35:19 +00:00
|
|
|
url = "http://www.makemkv.com/download/makemkv-oss-${ver}.tar.gz";
|
2015-02-08 21:39:40 +00:00
|
|
|
sha256 = "1x4mjx32839gf9k2zrjz2250valnqcaa2q89kc7sipgsl4b7wrr2";
|
2013-02-24 03:35:19 +00:00
|
|
|
};
|
|
|
|
|
2014-10-26 01:11:20 +01:00
|
|
|
buildInputs = [openssl qt4 mesa zlib pkgconfig libav];
|
2013-02-24 03:35:19 +00:00
|
|
|
|
2015-02-08 21:39:40 +00:00
|
|
|
libPath = stdenv.lib.makeLibraryPath [stdenv.cc.cc openssl mesa qt4 zlib ]
|
2015-01-15 04:25:26 +00:00
|
|
|
+ ":" + stdenv.cc.cc + "/lib64";
|
2013-02-24 03:35:19 +00:00
|
|
|
|
2014-11-22 21:24:39 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-02-24 10:17:24 +00:00
|
|
|
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.
|
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;
|
2014-11-22 21:24:39 +00:00
|
|
|
maintainers = [ maintainers.titanous ];
|
2013-02-24 03:35:19 +00:00
|
|
|
};
|
|
|
|
}
|