package.nix (602B)
1 { 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5 }: 6 7 buildGoModule (finalAttrs: { 8 pname = "gmnhg"; 9 version = "0.4.2"; 10 11 __structuredAttrs = true; 12 13 src = fetchFromGitHub { 14 owner = "tdemin"; 15 repo = "gmnhg"; 16 tag = "v${finalAttrs.version}"; 17 hash = "sha256-ob1bt9SX9qFd9GQ5d8g+fS4z+aT9ob3a7iLY8zjUCp8="; 18 }; 19 20 vendorHash = "sha256-Jiud36qgjj7RlJ7LysTlhKQhHK7C116lxbw1Cj2hHmU="; 21 22 meta = { 23 description = "Hugo-to-Gemini Markdown converter"; 24 homepage = "https://github.com/tdemin/gmnhg"; 25 license = lib.licenses.gpl3Plus; 26 maintainers = [ lib.maintainers.sikmir ]; 27 }; 28 })
