Unverified Commit 91ed0b2c authored by Aaron Jheng's avatar Aaron Jheng
Browse files

bingo: use finalAttrs

parent 50b6a376
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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 ];
  };
}
})