1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/video/makemkv/default.nix

40 lines
1.2 KiB
Nix
Raw Normal View History

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}";
2014-10-26 01:11:20 +01:00
ver = "1.8.14";
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";
2014-10-26 01:11:20 +01:00
sha256 = "1kjxawqh6xnjcgvaqy7idg8k0g3zqrr1w5r2r3bf11pg0h1ys5l5";
2013-02-24 03:35:19 +00:00
};
src_oss = fetchurl {
url = "http://www.makemkv.com/download/makemkv-oss-${ver}.tar.gz";
2014-10-26 01:11:20 +01:00
sha256 = "0cq3h45yyqma0kzi594dz0gbgjf3gyjcgxkiynifz3hacrbxbnd5";
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
libPath = stdenv.lib.makeLibraryPath [stdenv.gcc.gcc openssl mesa qt4 zlib ]
+ ":" + stdenv.gcc.gcc + "/lib64";
meta = {
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
'';
license = stdenv.lib.licenses.unfree;
2013-02-24 03:35:19 +00:00
homepage = http://makemkv.com;
};
}