Unverified Commit 8312ea65 authored by Stig's avatar Stig Committed by GitHub
Browse files

hongdown: init at 0.3.2 (#478761)

parents 683f932c d6964203
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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 −0
Original line number Diff line number Diff line
{
  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 ];
  };
})