package.nix (591B)
1 { 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5 }: 6 7 buildGoModule (finalAttrs: { 8 pname = "md2html"; 9 version = "2.0.1"; 10 11 __structuredAttrs = true; 12 13 src = fetchFromGitHub { 14 owner = "nocd5"; 15 repo = "md2html"; 16 tag = "v${finalAttrs.version}"; 17 hash = "sha256-3DnCLoX0x872zB90Z172iGwc6kQk9tpG1drw4s7LI0o="; 18 }; 19 20 vendorHash = "sha256-XO8WD/SC2Xii0bUiuOGL9V7XgTJDZjsPrpmyONFm+7U="; 21 22 meta = { 23 description = "Markdown to single HTML"; 24 homepage = "https://github.com/nocd5/md2html"; 25 license = lib.licenses.mit; 26 maintainers = [ lib.maintainers.sikmir ]; 27 }; 28 })
