diff --git a/overlay.nix b/overlay.nix index 465378ed..b9841043 100644 --- a/overlay.nix +++ b/overlay.nix @@ -23,7 +23,7 @@ rec { gamescope = import ./pkgs/gamescope { gamescope' = super.gamescope; - inherit (final) fetchFromGitHub lcms2; + inherit (final) fetchFromGitHub lcms; }; gamescope-wsi = gamescope.override { enableExecutable = false; diff --git a/pkgs/gamescope/default.nix b/pkgs/gamescope/default.nix index 7ae45fa5..763a432c 100644 --- a/pkgs/gamescope/default.nix +++ b/pkgs/gamescope/default.nix @@ -1,21 +1,21 @@ { gamescope' , fetchFromGitHub -, lcms2 +, lcms }: # NOTE: vendoring gamescope for the time being since we want to match the # version shipped by the vendor, ensuring feature level is equivalent. gamescope'.overrideAttrs(old: rec { - version = "3.14.26"; + version = "3.14.27"; src = fetchFromGitHub { owner = "ValveSoftware"; repo = "gamescope"; rev = version; fetchSubmodules = true; - hash = "sha256-vCPKySLB1D9oKgCrYrXqt/s0hV+/ocuWOrcDUzKbdKI="; + hash = "sha256-8Fpr0puLaiJxWXbM798DLDu64iMYZsbDhGMy9mxwiiM="; }; - buildInputs = old.buildInputs ++ [ lcms2 ]; + buildInputs = old.buildInputs ++ [ lcms ]; })