bingo: use finalAttrs (#404925)

This commit is contained in:
Felix Bargfeldt
2025-05-07 20:13:05 +02:00
committed by GitHub
+3 -3
View File
@@ -4,14 +4,14 @@
fetchFromGitHub,
}:
buildGoModule rec {
buildGoModule (finalAttrs: {
pname = "bingo";
version = "0.9.0";
src = fetchFromGitHub {
owner = "bwplotka";
repo = "bingo";
rev = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-bzh6P+J8EoewjOofwWXMgtSXAhESetD3y9EiqLNOT54=";
};
@@ -35,4 +35,4 @@ buildGoModule rec {
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ aaronjheng ];
};
}
})