hongdown: init at 0.3.2 (#478761)

This commit is contained in:
Stig
2026-02-14 09:19:40 +00:00
committed by GitHub
2 changed files with 31 additions and 0 deletions
+6
View File
@@ -28427,6 +28427,12 @@
github = "weitzj";
githubId = 829277;
};
wellmannmathis = {
email = "wellmannmathis@gmail.com";
github = "MathisWellmann";
githubId = 26856233;
name = "Mathis Wellmann";
};
welteki = {
email = "welteki@pm.me";
github = "welteki";
+25
View File
@@ -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 ];
};
})