about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/octave-modules/generate_html/default.nix
blob: 83f3a65bedc23950c7cad50bbc9933d4383ba533 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ buildOctavePackage
, lib
, fetchurl
}:

buildOctavePackage rec {
  pname = "generate_html";
  version = "0.3.2";

  src = fetchurl {
    url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
    sha256 = "1ai4h7jf9fqi7w565iprzylsh94pg4rhyf51hfj9kfdgdpb1abfs";
  };

  meta = with lib; {
    homepage = "https://octave.sourceforge.io/generate_html/index.html";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ KarlJoad ];
    description = "Provides functions for generating HTML pages that contain the help texts for a set of functions";
    longDescription = ''
      This package provides functions for generating HTML pages that contain
      the help texts for a set of functions. The package is designed to be as
      general as possible, but also contains convenience functions for generating
      a set of pages for entire packages.
    '';
  };
}