From 02b728477bc1fc5e47f6ad8f50b22e07b5f495df Mon Sep 17 00:00:00 2001 From: MathisWellmann Date: Sat, 10 Jan 2026 21:15:54 +0100 Subject: [PATCH 1/2] maintainers: add wellmannmathis --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 2824b32dccf9..c1e313d54918 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -28157,6 +28157,12 @@ github = "weitzj"; githubId = 829277; }; + wellmannmathis = { + email = "wellmannmathis@gmail.com"; + github = "MathisWellmann"; + githubId = 26856233; + name = "Mathis Wellmann"; + }; welteki = { email = "welteki@pm.me"; github = "welteki"; From d6964203f5af38683a1b49247924cc77bb6ab418 Mon Sep 17 00:00:00 2001 From: MathisWellmann Date: Sat, 10 Jan 2026 16:42:26 +0100 Subject: [PATCH 2/2] hongdown: init at 0.3.2 `hongdown` is an opinionated markdown formatter written in rust. It is useful for maintaining consistent style across a codebase. --- pkgs/by-name/ho/hongdown/package.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pkgs/by-name/ho/hongdown/package.nix diff --git a/pkgs/by-name/ho/hongdown/package.nix b/pkgs/by-name/ho/hongdown/package.nix new file mode 100644 index 000000000000..108aeaf8cd85 --- /dev/null +++ b/pkgs/by-name/ho/hongdown/package.nix @@ -0,0 +1,25 @@ +{ + lib, + rustPlatform, + fetchFromGitHub, +}: +rustPlatform.buildRustPackage (finalAttrs: { + pname = "hongdown"; + version = "0.3.2"; + + src = fetchFromGitHub { + owner = "dahlia"; + repo = "hongdown"; + tag = finalAttrs.version; + hash = "sha256-zk5pwiBonI24ZocnpzAbrZ1gfehm+hwjFUeUKcrCnMc="; + }; + cargoHash = "sha256-62cj+gqXgrIqnH82mLFryKgoUJzY3Zw7P/MusYVZiIw="; + meta = { + description = "Markdown formatter that enforces Hong Minhee's Markdown style conventions"; + mainProgram = "hongdown"; + homepage = "https://github.com/dahlia/hongdown"; + changelog = "https://github.com/dahlia/hongdown/blob/main/CHANGES.md"; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ wellmannmathis ]; + }; +})