From 537f1ca5b1b5e1e552a1e2d641ea2926f7530766 Mon Sep 17 00:00:00 2001 From: 0xgsvs <0xgsvs@gmail.com> Date: Fri, 24 Apr 2026 21:10:07 +0530 Subject: [PATCH] anchor: 1.0.0 -> 1.0.1 --- pkgs/by-name/an/anchor/package.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/an/anchor/package.nix b/pkgs/by-name/an/anchor/package.nix index 5cba74ce55f1..9c1adcec8569 100644 --- a/pkgs/by-name/an/anchor/package.nix +++ b/pkgs/by-name/an/anchor/package.nix @@ -6,17 +6,17 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "anchor"; - version = "1.0.0"; + version = "1.0.1"; src = fetchFromGitHub { owner = "solana-foundation"; repo = "anchor"; tag = "v${finalAttrs.version}"; - hash = "sha256-Y5452JSBAH+GkAJ57cDjup3vyMzPac+xvNAE+W81Ong="; + hash = "sha256-lpLNocNrSWkf/b34PCmUKqFumdo3LcOyGMtN8O2ciEU="; fetchSubmodules = true; }; - cargoHash = "sha256-GH/R7S8jQAWGTz8Ig/u/yb9o6FPtmkAaOzgl0uiB0dk="; + cargoHash = "sha256-Nx5g+X9cPL71Gf9J/Zp5u6H8rrbDQW6KqTc/Ti+mzow="; # Only build the anchor-cli package cargoBuildFlags = [ @@ -35,7 +35,10 @@ rustPlatform.buildRustPackage (finalAttrs: { homepage = "https://github.com/solana-foundation/anchor"; changelog = "https://github.com/solana-foundation/anchor/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ Denommus ]; + maintainers = with lib.maintainers; [ + Denommus + _0xgsvs + ]; mainProgram = "anchor"; }; })