about summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-02-08 18:23:31 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-02-08 18:23:31 -0300
commit29631c1cbea8eb817892ed5638da2eb323011def (patch)
treef0fd5f496e9303b78ecf7f177fe40c9873825026 /pkgs/tools/text
parentefd385f2d5e7ebdcf489509e78ddc7b9b60d70a4 (diff)
downloadnixlib-29631c1cbea8eb817892ed5638da2eb323011def.tar
nixlib-29631c1cbea8eb817892ed5638da2eb323011def.tar.gz
nixlib-29631c1cbea8eb817892ed5638da2eb323011def.tar.bz2
nixlib-29631c1cbea8eb817892ed5638da2eb323011def.tar.lz
nixlib-29631c1cbea8eb817892ed5638da2eb323011def.tar.xz
nixlib-29631c1cbea8eb817892ed5638da2eb323011def.tar.zst
nixlib-29631c1cbea8eb817892ed5638da2eb323011def.zip
robodoc: init at 4.99.44
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/robodoc/default.nix48
1 files changed, 48 insertions, 0 deletions
diff --git a/pkgs/tools/text/robodoc/default.nix b/pkgs/tools/text/robodoc/default.nix
new file mode 100644
index 000000000000..e30e8739797a
--- /dev/null
+++ b/pkgs/tools/text/robodoc/default.nix
@@ -0,0 +1,48 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, autoreconfHook
+}:
+
+stdenv.mkDerivation rec {
+  pname = "robodoc";
+  version = "4.99.44";
+
+  src = fetchFromGitHub {
+    owner = "gumpu";
+    repo = "ROBODoc";
+    rev = "v${version}";
+    sha256 = "l3prSdaGhOvXmZfCPbsZJNocO7y20zJjLQpajRTJOqE=";
+  };
+
+  nativeBuildInputs = [ autoreconfHook ];
+
+  hardeningDisable = [ "format" ];
+
+  meta = with lib; {
+    homepage = "https://github.com/gumpu/ROBODoc";
+    description = "Documentation Extraction Tool";
+    longDescription = ''
+      ROBODoc is program documentation tool. The idea is to include for every
+      function or procedure a standard header containing all sorts of
+      information about the procedure or function. ROBODoc extracts these
+      headers from the source file and puts them in a separate
+      autodocs-file. ROBODoc thus allows you to include the program
+      documentation in the source code and avoid having to maintain two separate
+      documents. Or as Petteri puts it: "robodoc is very useful - especially for
+      programmers who don't like writing documents with Word or some other
+      strange tool."
+
+      ROBODoc can format the headers in a number of different formats: HTML,
+      RTF, LaTeX, or XML DocBook. In HTML mode it can generate cross links
+      between headers. You can even include parts of your source code.
+
+      ROBODoc works with many programming languages: For instance C, Pascal,
+      Shell Scripts, Assembler, COBOL, Occam, Postscript, Forth, Tcl/Tk, C++,
+      Java -- basically any program in which you can use remarks/comments.
+    '';
+    license = with licenses; gpl3Plus;
+    maintainers = with maintainers; [ AndersonTorres ];
+    platforms = with platforms; all;
+  };
+}