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

42 lines
1.3 KiB
Nix
Raw Normal View History

2013-02-24 04:35:19 +01:00
{ stdenv, fetchurl
, openssl, qt5, libGLU_combined, zlib, pkgconfig, libav
2013-02-24 04:35:19 +01:00
}:
stdenv.mkDerivation rec {
name = "makemkv-${ver}";
ver = "1.12.2";
2013-02-24 04:35:19 +01:00
builder = ./builder.sh;
src_bin = fetchurl {
url = "http://www.makemkv.com/download/makemkv-bin-${ver}.tar.gz";
sha256 = "0ylybq0776am5yy064b55q0jja1q1p9dscwmn7f1p3igzv15rypj";
2013-02-24 04:35:19 +01:00
};
2015-02-08 22:39:40 +01:00
src_oss = fetchurl {
2013-02-24 04:35:19 +01:00
url = "http://www.makemkv.com/download/makemkv-oss-${ver}.tar.gz";
sha256 = "063rgb88zbh4zwysyhjn4awykcnc90qgsx6d8ggm27wy849306v1";
2013-02-24 04:35:19 +01:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [openssl qt5.qtbase libGLU_combined zlib libav];
2013-02-24 04:35:19 +01:00
libPath = stdenv.lib.makeLibraryPath [stdenv.cc.cc openssl libGLU_combined qt5.qtbase zlib ]
+ ":" + stdenv.cc.cc + "/lib64";
2013-02-24 04:35:19 +01:00
2014-11-22 22:24:39 +01:00
meta = with stdenv.lib; {
description = "Convert blu-ray and dvd to mkv";
2013-02-24 11:17:24 +01: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 10:26:19 +01:00
'';
2014-11-22 22:24:39 +01:00
license = licenses.unfree;
2013-02-24 04:35:19 +01:00
homepage = http://makemkv.com;
2014-11-22 22:24:39 +01:00
maintainers = [ maintainers.titanous ];
2013-02-24 04:35:19 +01:00
};
}