1{ 2 buildOctavePackage, 3 lib, 4 fetchurl, 5}: 6 7buildOctavePackage rec { 8 pname = "generate_html"; 9 version = "0.3.3"; 10 11 src = fetchurl { 12 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 13 sha256 = "sha256-CHJ0+90+SNXmslLrQc+8aetSnHK0m9PqEBipFuFjwHw="; 14 }; 15 16 meta = { 17 homepage = "https://gnu-octave.github.io/packages/generate_html/"; 18 license = lib.licenses.gpl3Plus; 19 maintainers = with lib.maintainers; [ KarlJoad ]; 20 description = "Provides functions for generating HTML pages that contain the help texts for a set of functions"; 21 longDescription = '' 22 This package provides functions for generating HTML pages that contain 23 the help texts for a set of functions. The package is designed to be as 24 general as possible, but also contains convenience functions for generating 25 a set of pages for entire packages. 26 ''; 27 }; 28}