fh: add iamanaws as maintainer

Signed-off-by: Angel J <78835633+Iamanaws@users.noreply.github.com>
This commit is contained in:
Angel J
2025-12-27 14:32:24 -08:00
parent f5991695bb
commit de8a35f046
+5 -5
View File
@@ -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";
};
}
})