Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 29 lines 657 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitea, 5}: 6 7buildGoModule rec { 8 pname = "mdhtml"; 9 version = "1.0"; 10 11 src = fetchFromGitea { 12 domain = "codeberg.org"; 13 owner = "Tomkoid"; 14 repo = "mdhtml"; 15 rev = version; 16 hash = "sha256-Fv5XpWA2ebqXdA+46gZQouuZ3XxH4WDj/W6xJ0ETg8E="; 17 }; 18 19 vendorHash = null; 20 21 meta = with lib; { 22 description = "Really simple CLI Markdown to HTML converter with styling support"; 23 homepage = "https://codeberg.org/Tomkoid/mdhtml"; 24 license = licenses.mit; 25 changelog = "https://codeberg.org/Tomkoid/mdhtml/releases"; 26 maintainers = with maintainers; [ tomkoid ]; 27 mainProgram = "mdhtml"; 28 }; 29}