From 094812e6f1b69d25e2a78f7c440265cdb5e1cf2f Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Wed, 25 Jun 2025 01:14:11 +0100 Subject: [PATCH] kilgharrah: Install libdvdcss --- hosts/kilgharrah/hardware.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/kilgharrah/hardware.nix b/hosts/kilgharrah/hardware.nix index 89c6b59..0583c64 100644 --- a/hosts/kilgharrah/hardware.nix +++ b/hosts/kilgharrah/hardware.nix @@ -38,6 +38,7 @@ withBDplus = true; }); }).overrideAttrs (originalAttrs: { + buildInputs = originalAttrs.buildInputs ++ [ pkgs.libdvdcss ]; # TODO: nixpkgs bug: libbluray needs patching to look at the nix store path of jdk17 when searching for a jdk # as a workaround, wrap vlc and set JAVA_HOME, which it uses instead of searching when specified nativeBuildInputs = originalAttrs.nativeBuildInputs ++ [ pkgs.makeWrapper ];