at 23.11-beta 28 lines 651 B view raw
1{ lib 2, buildGoModule 3, fetchFromGitea 4}: 5 6buildGoModule rec { 7 pname = "mdhtml"; 8 version = "0.3.0"; 9 10 src = fetchFromGitea { 11 domain = "codeberg.org"; 12 owner = "Tomkoid"; 13 repo = pname; 14 rev = version; 15 hash = "sha256-Pzl6Hmc24uWQ02FQM84rsypTJy1GdvYqfLDjN6Ryq4Q="; 16 }; 17 18 vendorHash = null; 19 20 meta = with lib; { 21 description = "Really simple CLI Markdown to HTML converter with styling support"; 22 homepage = "https://codeberg.org/Tomkoid/mdhtml"; 23 license = licenses.mit; 24 changelog = "https://codeberg.org/Tomkoid/mdhtml/releases"; 25 maintainers = with maintainers; [ tomkoid ]; 26 mainProgram = "mdhtml"; 27 }; 28}