summary refs log tree commit diff
path: root/pkgs/tools/text/robodoc/default.nix
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-11-21 16:12:21 +0100
committerAlyssa Ross <hi@alyssa.is>2023-11-21 16:12:48 +0100
commit048a4cd441a59cbf89defb18bb45c9f0b4429b35 (patch)
treef8f5850ff05521ab82d65745894714a8796cbfb6 /pkgs/tools/text/robodoc/default.nix
parent030c5028b07afcedce7c5956015c629486cc79d9 (diff)
parent4c2d05dd6435d449a3651a6dd314d9411b5f8146 (diff)
downloadnixpkgs-rootfs.tar
nixpkgs-rootfs.tar.gz
nixpkgs-rootfs.tar.bz2
nixpkgs-rootfs.tar.lz
nixpkgs-rootfs.tar.xz
nixpkgs-rootfs.tar.zst
nixpkgs-rootfs.zip
Rebase onto e4ad989506ec7d71f7302cc3067abd82730a4beb HEAD rootfs
Signed-off-by: Alyssa Ross <hi@alyssa.is>
Diffstat (limited to 'pkgs/tools/text/robodoc/default.nix')
-rw-r--r--pkgs/tools/text/robodoc/default.nix53
1 files changed, 0 insertions, 53 deletions
diff --git a/pkgs/tools/text/robodoc/default.nix b/pkgs/tools/text/robodoc/default.nix
deleted file mode 100644
index 83881cee29b..00000000000
--- a/pkgs/tools/text/robodoc/default.nix
+++ /dev/null
@@ -1,53 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, autoreconfHook
-}:
-
-stdenv.mkDerivation rec {
-  pname = "robodoc";
-  version = "4.99.44";
-
-  src = fetchFromGitHub {
-    owner = "gumpu";
-    repo = "ROBODoc";
-    rev = "v${version}";
-    sha256 = "l3prSdaGhOvXmZfCPbsZJNocO7y20zJjLQpajRTJOqE=";
-  };
-
-  postConfigure = lib.optionalString stdenv.isDarwin ''
-    substituteInPlace Docs/makefile.am \
-      --replace 'man1_MANS = robodoc.1 robohdrs.1' 'man1_MANS ='
-  '';
-
-  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;
-  };
-}