Unverified Commit a2e52aea authored by Fernando Rodrigues's avatar Fernando Rodrigues Committed by GitHub
Browse files

wazero: add liberodark to maintainers (#458439)

parents 74c2e126 c4cfadd8
Loading
Loading
Loading
Loading
+8 −9
Original line number Diff line number Diff line
@@ -6,14 +6,14 @@
  wazero,
}:

buildGoModule rec {
buildGoModule (finalAttrs: {
  pname = "wazero";
  version = "1.9.0";

  src = fetchFromGitHub {
    owner = "tetratelabs";
    repo = "wazero";
    rev = "v${version}";
    tag = "v${finalAttrs.version}";
    hash = "sha256-yxnHLc0PFxh8NRBgK2hvhKaxRM1w3IZ9TnfJM0+uadg=";
  };

@@ -25,8 +25,7 @@ buildGoModule rec {

  ldflags = [
    "-s"
    "-w"
    "-X=github.com/tetratelabs/wazero/internal/version.version=${version}"
    "-X=github.com/tetratelabs/wazero/internal/version.version=${finalAttrs.version}"
  ];

  checkFlags = [
@@ -41,12 +40,12 @@ buildGoModule rec {
    };
  };

  meta = with lib; {
  meta = {
    description = "Zero dependency WebAssembly runtime for Go developers";
    homepage = "https://github.com/tetratelabs/wazero";
    changelog = "https://github.com/tetratelabs/wazero/releases/tag/${src.rev}";
    license = licenses.asl20;
    maintainers = [ ];
    maintainers = with lib.maintainers; [ liberodark ];
    changelog = "https://github.com/tetratelabs/wazero/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.asl20;
    mainProgram = "wazero";
  };
}
})