gamescope: 3.15.5 -> 3.15.9

This commit is contained in:
K900 2024-09-11 08:04:55 +03:00
parent d2df1fd941
commit 8d7af7c14d

View File

@ -33,6 +33,7 @@
, lib
, makeBinaryWrapper
, nix-update-script
, writeShellScriptBin
, enableExecutable ? true
, enableWsi ? true
}:
@ -46,14 +47,14 @@ let
in
stdenv.mkDerivation (finalAttrs: {
pname = "gamescope";
version = "3.15.5";
version = "3.15.9";
src = fetchFromGitHub {
owner = "ValveSoftware";
repo = "gamescope";
rev = "refs/tags/${finalAttrs.version}";
fetchSubmodules = true;
hash = "sha256-H6o0UdJ+wpfy0YY6LDzncWWzUGAMwQC7sHPu5TxHC8I=";
hash = "sha256-+BRinPyh8t9HboT0uXPEu+sSJz9qCZshlfzDfZDA41Q=";
};
patches = [
@ -98,6 +99,9 @@ stdenv.mkDerivation (finalAttrs: {
edid-decode
# For OpenVR
cmake
# calls git describe to encode its own version into the build
(writeShellScriptBin "git" "echo ${finalAttrs.version}")
] ++ lib.optionals enableExecutable [
makeBinaryWrapper
glslang