summary refs log tree commit diff
path: root/doc/contributing-to-documentation.xml
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-10-20 12:17:58 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2019-10-20 13:35:04 +0200
commit95dfbe2d632b71a72634d2d65e3f738f500ee5ce (patch)
treec3da9c73c48a65a204e47de113c82e9efdac037a /doc/contributing-to-documentation.xml
parentaf7378397fafd63384c4c7a28ba22b0803b00a18 (diff)
downloadnixpkgs-95dfbe2d632b71a72634d2d65e3f738f500ee5ce.tar
nixpkgs-95dfbe2d632b71a72634d2d65e3f738f500ee5ce.tar.gz
nixpkgs-95dfbe2d632b71a72634d2d65e3f738f500ee5ce.tar.bz2
nixpkgs-95dfbe2d632b71a72634d2d65e3f738f500ee5ce.tar.lz
nixpkgs-95dfbe2d632b71a72634d2d65e3f738f500ee5ce.tar.xz
nixpkgs-95dfbe2d632b71a72634d2d65e3f738f500ee5ce.tar.zst
nixpkgs-95dfbe2d632b71a72634d2d65e3f738f500ee5ce.zip
doc: organize chapters into parts, and reduce toc depth
Reorganize the chapters into parts and reduce the TOC depth to make the
TOC useful again. The top-level TOC is very brief, but that is fine
because every part will have its own TOC.

Section titles of languages/frameworks are also simplified to just
the name of the language/framework.
Diffstat (limited to 'doc/contributing-to-documentation.xml')
-rw-r--r--doc/contributing-to-documentation.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/contributing-to-documentation.xml b/doc/contributing-to-documentation.xml
new file mode 100644
index 00000000000..b0266043775
--- /dev/null
+++ b/doc/contributing-to-documentation.xml
@@ -0,0 +1,30 @@
+<chapter xmlns="http://docbook.org/ns/docbook"
+         xmlns:xlink="http://www.w3.org/1999/xlink"
+         xml:id="chap-contributing">
+ <title>Contributing to this documentation</title>
+ <para>
+  The DocBook sources of the Nixpkgs manual are in the <filename
+xlink:href="https://github.com/NixOS/nixpkgs/tree/master/doc">doc</filename> subdirectory of the Nixpkgs repository.
+ </para>
+ <para>
+  You can quickly check your edits with <command>make</command>:
+ </para>
+<screen>
+<prompt>$ </prompt>cd /path/to/nixpkgs/doc
+<prompt>$ </prompt>nix-shell
+<prompt>[nix-shell]$ </prompt>make
+</screen>
+ <para>
+  If you experience problems, run <command>make debug</command> to help understand the docbook errors.
+ </para>
+ <para>
+  After making modifications to the manual, it's important to build it before committing. You can do that as follows:
+<screen>
+<prompt>$ </prompt>cd /path/to/nixpkgs/doc
+<prompt>$ </prompt>nix-shell
+<prompt>[nix-shell]$ </prompt>make clean
+<prompt>[nix-shell]$ </prompt>nix-build .
+</screen>
+  If the build succeeds, the manual will be in <filename>./result/share/doc/nixpkgs/manual.html</filename>.
+ </para>
+</chapter>