osu-lazer: avoid rebuild when meta changes

This commit is contained in:
Gutyina Gergő 2024-05-19 10:40:58 +02:00
parent 2cd17d14bc
commit 533ce4cf05
No known key found for this signature in database

View File

@ -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;
}