Skip to content

Commit

Permalink
gamescope{,-session}: 3.15.9 -> 3.15.10
Browse files Browse the repository at this point in the history
  • Loading branch information
K900 committed Sep 21, 2024
1 parent 26d5a5a commit faf4c74
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ rec {

gamescope = import ./pkgs/gamescope {
gamescope' = super.gamescope;
inherit (final) fetchFromGitHub writeShellScriptBin;
inherit (final) fetchFromGitHub;
};
gamescope-wsi = gamescope.override {
enableExecutable = false;
Expand Down
4 changes: 2 additions & 2 deletions pkgs/gamescope-session/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,13 @@ let
};
in stdenv.mkDerivation(finalAttrs: {
pname = "gamescope-session";
version = "3.15.9-1";
version = "3.15.10-1";

src = fetchFromGitHub {
owner = "Jovian-Experiments";
repo = "PKGBUILDs-mirror";
rev = "jupiter-main/gamescope-${finalAttrs.version}";
hash = "sha256-aPyhI7I3RyFjVgVpZLzUbbMP6zTjzWlqMXcx4fS2z7U=";
hash = "sha256-bf4surRXvUlrDd/mXF1cvBztwU1KTy8JzjW2yDOC9AA=";
};

patches = [
Expand Down
7 changes: 2 additions & 5 deletions pkgs/gamescope/default.nix
Original file line number Diff line number Diff line change
@@ -1,21 +1,18 @@
{ gamescope'
, fetchFromGitHub
, writeShellScriptBin
}:

# 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.15.9";
version = "3.15.10";

src = fetchFromGitHub {
owner = "ValveSoftware";
repo = "gamescope";
rev = version;
fetchSubmodules = true;
hash = "sha256-+BRinPyh8t9HboT0uXPEu+sSJz9qCZshlfzDfZDA41Q=";
hash = "sha256-7gljTLjW/tnCS2b77i/oWTOA2jCVj9GEV4FzfLqV9Uk=";
};

nativeBuildInputs = old.nativeBuildInputs ++ [ (writeShellScriptBin "git" "echo ${version}") ];
})

0 comments on commit faf4c74

Please sign in to comment.