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 {
withAACS = true;
withBDplus = true;
};
in
[
( (
self: super: { self: super: {
libbluray = super.libbluray.override { vlc = super.vlc.override { inherit libbluray; };
withAACS = true;
withBDplus = true;
};
} }
) )
]; ];