From 533ce4cf057fdff5573c5cf7d5c6197b1b9fc997 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gutyina=20Gerg=C5=91?= Date: Sun, 19 May 2024 10:40:58 +0200 Subject: [PATCH] osu-lazer: avoid rebuild when meta changes --- pkgs/games/osu-lazer/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/games/osu-lazer/default.nix b/pkgs/games/osu-lazer/default.nix index 8ea746837d4a..67454d30a6e7 100644 --- a/pkgs/games/osu-lazer/default.nix +++ b/pkgs/games/osu-lazer/default.nix @@ -74,11 +74,13 @@ buildDotnetModule rec { name = "osu"; exec = "osu!"; icon = "osu!"; - comment = meta.description; + comment = "Rhythm is just a *click* away (no score submission or multiplayer, see osu-lazer-bin)"; type = "Application"; categories = [ "Game" ]; })]; + passthru.updateScript = ./update.sh; + meta = with lib; { description = "Rhythm is just a *click* away (no score submission or multiplayer, see osu-lazer-bin)"; homepage = "https://osu.ppy.sh"; @@ -91,5 +93,4 @@ buildDotnetModule rec { platforms = [ "x86_64-linux" ]; mainProgram = "osu!"; }; - passthru.updateScript = ./update.sh; }