From 9df49c4f68a968f45fc31232c1090f8c1024fcc7 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Tue, 5 Dec 2023 22:52:22 -0600 Subject: [PATCH] Limit libbluray impact --- overlays/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/overlays/default.nix b/overlays/default.nix index 8226568..e63fb1d 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -53,7 +53,7 @@ in rec { }; inject = prev.callPackage ./inject.nix { inherit (final) pkgs; }; jinja2-cli = prev.python3.pkgs.callPackage ./jinja2-cli.nix {}; - libbluray = prev.libbluray.override { + libbluray-custom = prev.libbluray.override { withAACS = true; withBDplus = true; }; @@ -61,6 +61,9 @@ in rec { pkgs = final.pkgs; }; template = prev.callPackage ./template.nix { }; + handbrake = prev.handbrake.override { + libbluray = libbluray-custom; + }; xonsh = prev.xonsh.overridePythonAttrs (old: rec{ python3 = final.gregpy;