default.nix (619B)
1 { 2 lib, 3 fetchFromGitea, 4 python3Packages, 5 }: 6 7 python3Packages.buildPythonApplication { 8 pname = "gmi2html"; 9 version = "1.0-unstable-2022-02-16"; 10 11 src = fetchFromGitea { 12 domain = "notabug.org"; 13 owner = "tinyrabbit"; 14 repo = "gmi2html"; 15 rev = "141c3978961ec6cf8530efc810bcd283320c3628"; 16 hash = "sha256-MFoNOm/BOao5pOntW9Pqn3IjCCjyw6pJL9OXf9RpGIs="; 17 }; 18 19 meta = { 20 description = "A library and CLI tool for converting text/gemini to text/html"; 21 homepage = "https://notabug.org/tinyrabbit/gmi2html"; 22 license = lib.licenses.mit; 23 maintainers = [ lib.maintainers.sikmir ]; 24 }; 25 }