gate: refactor

this shouldn't create any rebuilds
This commit is contained in:
quantenzitrone
2026-02-07 09:48:40 +01:00
parent aee00ac804
commit 4562924698
+3 -6
View File
@@ -4,17 +4,14 @@
fetchFromGitHub,
}:
let
buildGoModule (finalAttrs: {
pname = "gate";
version = "0.62.3";
in
buildGoModule {
inherit pname version;
src = fetchFromGitHub {
owner = "minekube";
repo = "gate";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-tOyXVqmexAWpC2s86aUUjmDp6V+qvP3ve8FrqdtexvU=";
};
@@ -44,4 +41,4 @@ buildGoModule {
maintainers = with lib.maintainers; [ XBagon ];
mainProgram = "gate";
};
}
})