Unverified Commit 3aea4941 authored by Austin Horstman's avatar Austin Horstman Committed by GitHub
Browse files

avalanchego: 1.11.11 -> 1.12.0-initial-poc.6 (#351441)

parents c1612975 0720e518
Loading
Loading
Loading
Loading
+21 −15
Original line number Diff line number Diff line
{ IOKit
, buildGoModule
, fetchFromGitHub
, lib
, stdenv
{
  buildGoModule,
  fetchFromGitHub,
  lib,
  nix-update-script,
  stdenv,
}:

buildGoModule rec {
  pname = "avalanchego";
  version = "1.11.11";
  version = "1.12.0-initial-poc.6";

  src = fetchFromGitHub {
    owner = "ava-labs";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-9NhwxB5AeGvQgZbjNu5WWHiP194ws7s1WDtCntLr//g=";
    repo = "avalanchego";
    rev = "refs/tags/v${version}";
    hash = "sha256-LBwmoegsBWC2xlTc3BJDxyYX58b+X7g5xl9vnThVHW0=";
  };

  vendorHash = "sha256-A8Bf/KzTFvC/hFLU1k6M89649wjoqnIXRQ1uJaTj9YA=";
  # go mod vendor has a bug, see: https://github.com/golang/go/issues/57529
  # https://github.com/golang/go/issues/57529
  proxyVendor = true;

  buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ IOKit ];
  vendorHash = "sha256-slu0f0Y33aGuVpN5pZcRp9RJAXcLnZyUNO7pFdm+HrY=";


  subPackages = [ "main" ];

@@ -34,12 +35,17 @@ buildGoModule rec {
    mv $out/bin/{main,${pname}}
  '';

  meta = with lib; {
  passthru.updateScript = nix-update-script { };

  meta = {
    description = "Go implementation of an Avalanche node";
    homepage = "https://github.com/ava-labs/avalanchego";
    changelog = "https://github.com/ava-labs/avalanchego/releases/tag/v${version}";
    license = licenses.bsd3;
    maintainers = with maintainers; [ urandom qjoly ];
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [
      urandom
      qjoly
    ];
    mainProgram = "avalanchego";
  };
}
+0 −4
Original line number Diff line number Diff line
@@ -27895,10 +27895,6 @@ with pkgs;
  av-98 = callPackage ../applications/networking/browsers/av-98 { };
  avalanchego = callPackage ../applications/networking/avalanchego {
    inherit (darwin.apple_sdk.frameworks) IOKit;
  };
  avizo = callPackage ../applications/misc/avizo { };
  avocode = callPackage ../applications/graphics/avocode { };