From de8a35f04698f186f140a38a73ae8a28240f5e3e Mon Sep 17 00:00:00 2001 From: Angel J <78835633+Iamanaws@users.noreply.github.com> Date: Sat, 27 Dec 2025 14:32:24 -0800 Subject: [PATCH] fh: add iamanaws as maintainer Signed-off-by: Angel J <78835633+Iamanaws@users.noreply.github.com> --- pkgs/by-name/fh/fh/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/fh/fh/package.nix b/pkgs/by-name/fh/fh/package.nix index 08febb55be53..9a5a993b6dd5 100644 --- a/pkgs/by-name/fh/fh/package.nix +++ b/pkgs/by-name/fh/fh/package.nix @@ -8,14 +8,14 @@ cacert, }: -rustPlatform.buildRustPackage rec { +rustPlatform.buildRustPackage (finalAttrs: { pname = "fh"; version = "0.1.26"; src = fetchFromGitHub { owner = "DeterminateSystems"; repo = "fh"; - rev = "v${version}"; + tag = "v${finalAttrs.version}"; hash = "sha256-cHXpTe5tAXrAwVu5+ZTb3pzHIqAk353GnNFPvComIfQ="; }; @@ -48,9 +48,9 @@ rustPlatform.buildRustPackage rec { meta = { description = "Official FlakeHub CLI"; homepage = "https://github.com/DeterminateSystems/fh"; - changelog = "https://github.com/DeterminateSystems/fh/releases/tag/${src.rev}"; + changelog = "https://github.com/DeterminateSystems/fh/releases/tag/${finalAttrs.version}"; license = lib.licenses.asl20; - maintainers = [ ]; + maintainers = with lib.maintainers; [ iamanaws ]; mainProgram = "fh"; }; -} +})