My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/applications/video/makemkv/default.nix

42 lines
1.3 KiB

11 years ago
{ stdenv, fetchurl
, openssl, qt5, libGLU_combined, zlib, pkgconfig, libav
11 years ago
}:
stdenv.mkDerivation rec {
name = "makemkv-${ver}";
ver = "1.12.3";
11 years ago
builder = ./builder.sh;
src_bin = fetchurl {
url = "http://www.makemkv.com/download/makemkv-bin-${ver}.tar.gz";
sha256 = "0rggpzp7gp4y6gxnhl4saxpdwnaivwkildpwbjjh7zvmgka3749a";
11 years ago
};
src_oss = fetchurl {
11 years ago
url = "http://www.makemkv.com/download/makemkv-oss-${ver}.tar.gz";
sha256 = "1w0l2rq9gyzli5ilw82v27d8v7fmchc1wdzcq06q1bsm9wmnbx1r";
11 years ago
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [openssl qt5.qtbase libGLU_combined zlib libav];
11 years ago
libPath = stdenv.lib.makeLibraryPath [stdenv.cc.cc openssl libGLU_combined qt5.qtbase zlib ]
+ ":" + stdenv.cc.cc + "/lib64";
11 years ago
meta = with stdenv.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;
11 years ago
homepage = http://makemkv.com;
maintainers = [ maintainers.titanous ];
11 years ago
};
}