Rupert: Make bluray override compile less stuff

This commit is contained in:
fruchti 2025-07-04 09:11:05 +02:00
parent 8b424cff0a
commit 08de91165f

View file

@ -17,13 +17,16 @@ in
# ./open-pgsql.nix # ./open-pgsql.nix
]; ];
nixpkgs.overlays = [ nixpkgs.overlays = let
( libbluray = pkgs.libbluray.override {
self: super: {
libbluray = super.libbluray.override {
withAACS = true; withAACS = true;
withBDplus = true; withBDplus = true;
}; };
in
[
(
self: super: {
vlc = super.vlc.override { inherit libbluray; };
} }
) )
]; ];