libbluray: Add patch from Handbrake project

- A01: Make it smarter about filtering duplicates
This commit is contained in:
Wout Mertens
2014-05-04 01:56:48 +02:00
parent ac80d45419
commit 66216ea6db
2 changed files with 84 additions and 1 deletions
@@ -11,7 +11,7 @@ let baseName = "libbluray";
in
stdenv.mkDerivation {
name = "${baseName}-${version}";
name = "${baseName}-${version}p1";
src = fetchgit {
url = git://git.videolan.org/libbluray.git;
@@ -26,6 +26,9 @@ stdenv.mkDerivation {
preConfigure = "./bootstrap";
configureFlags = ["--disable-static"] ++ stdenv.lib.optionals withAACS ["--enable-bdjava" "--with-jdk=${jdk}"];
# From Handbrake
patches = [ ./A01-filter-dup.patch ];
meta = {
homepage = http://www.videolan.org/developers/libbluray.html;
description = "Library to access Blu-Ray disks for video playback";