2021-09-04 21:05:03 +01:00
|
|
|
{ lib, stdenv, fetchurl, libgcrypt, libgpg-error, bison, flex }:
|
2012-02-22 20:29:25 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2016-11-23 14:49:18 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libaacs";
|
2022-03-01 16:32:34 +00:00
|
|
|
version = "0.11.1";
|
2012-02-22 20:29:25 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://get.videolan.org/libaacs/${version}/${pname}-${version}.tar.bz2";
|
2022-03-01 16:32:34 +00:00
|
|
|
sha256 = "sha256-qIqg6+TJinf3rv/ZKrPvZKxUjGuCLoJIqLkmclvqCjk=";
|
2012-02-22 20:29:25 +00:00
|
|
|
};
|
|
|
|
|
2021-09-04 21:05:03 +01:00
|
|
|
buildInputs = [ libgcrypt libgpg-error ];
|
2012-02-22 20:29:25 +00:00
|
|
|
|
2021-03-14 17:50:12 +00:00
|
|
|
nativeBuildInputs = [ bison flex ];
|
2015-02-02 17:31:42 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-03-24 12:02:39 +00:00
|
|
|
homepage = "https://www.videolan.org/developers/libaacs.html";
|
2015-05-18 15:02:36 +01:00
|
|
|
description = "Library to access AACS protected Blu-Ray disks";
|
2015-02-02 17:31:42 +00:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; linux;
|
2012-02-22 20:29:25 +00:00
|
|
|
};
|
|
|
|
}
|