new library: libbluray for playing bluray disks
optionally use libaacs to decrypt commercial disks svn path=/nixpkgs/trunk/; revision=32486
This commit is contained in:
parent
0efd53814f
commit
383ec69fb6
33
pkgs/development/libraries/libbluray/default.nix
Normal file
33
pkgs/development/libraries/libbluray/default.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{stdenv, fetchgit, autoconf, automake, libtool, libaacs ? null, jdk ? null, ant ? null, withAACS ? false}:
|
||||||
|
|
||||||
|
assert withAACS -> jdk != null && ant != null && libaacs != null;
|
||||||
|
|
||||||
|
# Info on how to use:
|
||||||
|
# https://wiki.archlinux.org/index.php/BluRay
|
||||||
|
|
||||||
|
let baseName = "libbluray";
|
||||||
|
version = "0.2.1";
|
||||||
|
|
||||||
|
in
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "${baseName}-${version}";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = git://git.videolan.org/libbluray.git;
|
||||||
|
rev = "3b9a9f044644a6abe9cb09377f714ded9fdd6c87";
|
||||||
|
sha256 = "551b623e76c2dba44b5490fb42ccdc491b28cd42841de28237b8edbed0f0711c";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [autoconf automake libtool] ++ stdenv.lib.optionals withAACS [jdk ant libaacs];
|
||||||
|
NIX_LDFLAGS = stdenv.lib.optionalString withAACS "-laacs";
|
||||||
|
|
||||||
|
preConfigure = "./bootstrap";
|
||||||
|
configureFlags = ["--disable-static"] ++ stdenv.lib.optionals withAACS ["--enable-bdjava" "--with-jdk=${jdk}"];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://www.videolan.org/developers/libbluray.html;
|
||||||
|
description = "Library to access Blu-Ray disks for video playback";
|
||||||
|
license = stdenv.lib.licenses.lgpl21;
|
||||||
|
};
|
||||||
|
}
|
@ -3886,6 +3886,8 @@ let
|
|||||||
|
|
||||||
libbluedevil = callPackage ../development/libraries/libbluedevil { };
|
libbluedevil = callPackage ../development/libraries/libbluedevil { };
|
||||||
|
|
||||||
|
libbluray = callPackage ../development/libraries/libbluray { };
|
||||||
|
|
||||||
libcaca = callPackage ../development/libraries/libcaca { };
|
libcaca = callPackage ../development/libraries/libcaca { };
|
||||||
|
|
||||||
libcanberra = callPackage ../development/libraries/libcanberra {
|
libcanberra = callPackage ../development/libraries/libcanberra {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user