From 94c9be259dc780eff78cd82a5c5e6ee7baa16296 Mon Sep 17 00:00:00 2001 From: Bruno Bigras Date: Mon, 19 Aug 2024 20:23:58 -0400 Subject: [PATCH] gamemode: 1.8.1 -> 1.8.2 Co-authored-by: Kira Bruneau --- pkgs/tools/games/gamemode/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/games/gamemode/default.nix b/pkgs/tools/games/gamemode/default.nix index 13a619c770c4..6744bcdb6080 100644 --- a/pkgs/tools/games/gamemode/default.nix +++ b/pkgs/tools/games/gamemode/default.nix @@ -18,13 +18,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "gamemode"; - version = "1.8.1"; + version = "1.8.2"; src = fetchFromGitHub { owner = "FeralInteractive"; repo = "gamemode"; rev = "refs/tags/${finalAttrs.version}"; - hash = "sha256-kusb58nGxYA3U9GbZdW3hLjA3NmHc+af0VT4iGRewBw="; + hash = "sha256-JkDFhFLUHlgD6RKxlxMjrSF2zQ4AWmRUQMLbWYwIZmg="; }; outputs = [ "out" "dev" "lib" "man" ]; @@ -69,7 +69,7 @@ stdenv.mkDerivation (finalAttrs: { "--libexecdir=libexec" ]; - doCheck = false; # https://github.com/FeralInteractive/gamemode/issues/468 + doCheck = true; nativeCheckInputs = [ appstream ]; @@ -94,7 +94,7 @@ stdenv.mkDerivation (finalAttrs: { meta = with lib; { description = "Optimise Linux system performance on demand"; - homepage = "https://github.com/FeralInteractive/gamemode"; + homepage = "https://feralinteractive.github.io/gamemode"; changelog = "https://github.com/FeralInteractive/gamemode/blob/${finalAttrs.version}/CHANGELOG.md"; license = licenses.bsd3; maintainers = with maintainers; [ kira-bruneau ];