Author: simons
Date: Wed Feb 22 20:29:25 2012
New Revision: 32485
URL: https://nixos.org/websvn/nix/?rev=32485&sc=1
Log:
new library: libaacs for decoding bluray disks
Does not contain any drm or copyright infringements.
Added:
nixpkgs/trunk/pkgs/development/libraries/libaacs/
nixpkgs/trunk/pkgs/development/libraries/libaacs/default.nix
Modified:
nixpkgs/trunk/pkgs/top-level/all-packages.nix
Added: nixpkgs/trunk/pkgs/development/libraries/libaacs/default.nix
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/development/libraries/libaacs/default.nix Wed Feb
22 20:29:25 2012 (r32485)
@@ -0,0 +1,30 @@
+{stdenv, fetchurl, libgcrypt}:
+
+# library that allows libbluray to play AACS protected bluray disks
+# libaacs does not infringe DRM's right or copyright. See the legal page of
the website for more info.
+
+# Info on how to use / obtain aacs keys:
+# http://vlc-bluray.whoknowsmy.name/
+# https://wiki.archlinux.org/index.php/BluRay
+
+
+let baseName = "libaacs";
+ version = "0.3.0";
+in
+
+stdenv.mkDerivation {
+ name = "${baseName}-${version}";
+
+ src = fetchurl {
+ url =
"http://download.videolan.org/pub/videolan/${baseName}/${version}/${baseName}-${version}.tar.bz2";
+ sha256 =
"bf92dab1a6a8ee08a55e8cf347c2cda49e6535b52e85bb1e92e1cfcc8ecec22c";
+ };
+
+ buildInputs = [libgcrypt];
+
+ meta = {
+ homepage = http://www.videolan.org/developers/libbluray.html;
+ description = "Library to access Blu-Ray disks for video playback";
+ license = stdenv.lib.licenses.lgpl21;
+ };
+}
Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/all-packages.nix Wed Feb 22 20:29:22
2012 (r32484)
+++ nixpkgs/trunk/pkgs/top-level/all-packages.nix Wed Feb 22 20:29:25
2012 (r32485)
@@ -3864,6 +3864,8 @@
lib3ds = callPackage ../development/libraries/lib3ds { };
+ libaacs = callPackage ../development/libraries/libaacs { };
+
libaal = callPackage ../development/libraries/libaal { };
libao = callPackage ../development/libraries/libao {
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits