Skip to content

Commit c612142

Browse files
authored
bingo: use finalAttrs (#404925)
2 parents 3137e6f + 91ed0b2 commit c612142

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkgs/by-name/bi/bingo/package.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
fetchFromGitHub,
55
}:
66

7-
buildGoModule rec {
7+
buildGoModule (finalAttrs: {
88
pname = "bingo";
99
version = "0.9.0";
1010

1111
src = fetchFromGitHub {
1212
owner = "bwplotka";
1313
repo = "bingo";
14-
rev = "v${version}";
14+
tag = "v${finalAttrs.version}";
1515
hash = "sha256-bzh6P+J8EoewjOofwWXMgtSXAhESetD3y9EiqLNOT54=";
1616
};
1717

@@ -35,4 +35,4 @@ buildGoModule rec {
3535
license = lib.licenses.asl20;
3636
maintainers = with lib.maintainers; [ aaronjheng ];
3737
};
38-
}
38+
})

0 commit comments

Comments
 (0)