base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / li / libbdplus / package.nix
blobd52ca4fca284284d91493cb87cc97cfa61431b13
1 { lib, stdenv, fetchurl, libgcrypt, libgpg-error, gettext }:
3 # library that allows libbluray to play BDplus protected bluray disks
4 # libaacs does not infringe DRM's right or copyright. See the legal page of the website for more info.
6 # Info on how to use / obtain aacs keys:
7 # http://vlc-bluray.whoknowsmy.name/
8 # https://wiki.archlinux.org/index.php/BluRay
10 stdenv.mkDerivation rec {
11   pname = "libbdplus";
12   version  = "0.2.0";
14   src = fetchurl {
15     url = "http://get.videolan.org/libbdplus/${version}/${pname}-${version}.tar.bz2";
16     sha256 = "sha256-uT7qPq7zPW6RVdLDSwaMUFSTqlpJNuYydPQ0KrD0Clg=";
17   };
19   buildInputs = [ libgcrypt libgpg-error gettext ];
21   meta = with lib; {
22     homepage = "http://www.videolan.org/developers/libbdplus.html";
23     description = "Library to access BD+ protected Blu-Ray disks";
24     license = licenses.lgpl21;
25     maintainers = with maintainers; [ abbradar ];
26     platforms = with platforms; unix;
27   };