summary refs log tree commit diff
path: root/pkgs/development/octave-modules
diff options
context:
space:
mode:
authorKarl Hallsby <karl@hallsby.com>2021-01-06 11:05:02 -0600
committerDoron Behar <doron.behar@gmail.com>2021-02-24 21:00:49 +0200
commit099a55dc0a3bccea9fb006a6e60ea06c87695887 (patch)
tree1091865a8b61e387ed37e2c5424f75d605b72f2c /pkgs/development/octave-modules
parent0b1f57bb9eb3fef668d71fb11cf650f1c38d3f25 (diff)
downloadnixpkgs-099a55dc0a3bccea9fb006a6e60ea06c87695887.tar
nixpkgs-099a55dc0a3bccea9fb006a6e60ea06c87695887.tar.gz
nixpkgs-099a55dc0a3bccea9fb006a6e60ea06c87695887.tar.bz2
nixpkgs-099a55dc0a3bccea9fb006a6e60ea06c87695887.tar.lz
nixpkgs-099a55dc0a3bccea9fb006a6e60ea06c87695887.tar.xz
nixpkgs-099a55dc0a3bccea9fb006a6e60ea06c87695887.tar.zst
nixpkgs-099a55dc0a3bccea9fb006a6e60ea06c87695887.zip
octave.pkgs.generate_html: init at 0.3.2
Diffstat (limited to 'pkgs/development/octave-modules')
-rw-r--r--pkgs/development/octave-modules/generate_html/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/octave-modules/generate_html/default.nix b/pkgs/development/octave-modules/generate_html/default.nix
new file mode 100644
index 00000000000..83f3a65bedc
--- /dev/null
+++ b/pkgs/development/octave-modules/generate_html/default.nix
@@ -0,0 +1,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.
+    '';
+  };
+}