d5e5246e76
This change which involves creating multiple outputs for CUDA redistributable packages. We use a script to find out, ahead of time, the outputs each redist package provides. From that, we are able to create multiple outputs for supported redist packages, allowing users to specify exactly which components they require. Beyond the script which finds outputs ahead of time, there is some custom code involved in making this happen. For example, the way Nixpkgs typically handles multiple outputs involves making `dev` the default output when available, and adding `out` to `dev`'s `propagatedBuildInputs`. Instead, we make each output independent of the others. If a user wants only to include the headers found in a redist package, they can do so by choosing the `dev` output. If they want to include dynamic libraries, they can do so by specifying the `lib` output, or `static` for static libraries. To avoid breakages, we continue to provide the `out` output, which becomes the union of all other outputs, effectively making the split outputs opt-in. |
||
---|---|---|
.. | ||
builders | ||
contributing | ||
development | ||
doc-support | ||
functions | ||
hooks | ||
languages-frameworks | ||
module-system | ||
old | ||
stdenv | ||
using | ||
builders.md | ||
common.nix | ||
contributing.md | ||
default.nix | ||
development.md | ||
functions.md | ||
lib.md | ||
manpage-urls.json | ||
manual.md.in | ||
overrides.css | ||
preface.chapter.md | ||
README.md | ||
shell.nix | ||
stdenv.md | ||
style.css | ||
using-nixpkgs.md |
Contributing to the Nixpkgs manual
This directory houses the sources files for the Nixpkgs manual.
You can find the rendered documentation for Nixpkgs unstable
on nixos.org.
Docs for Nixpkgs stable are also available.
If you're only getting started with Nix, go to nixos.org/learn.
Contributing to this documentation
You can quickly check your edits with nix-build
:
$ cd /path/to/nixpkgs
$ nix-build doc
If the build succeeds, the manual will be in ./result/share/doc/nixpkgs/manual.html
.
devmode
The shell in the manual source directory makes available a command, devmode
.
It is a daemon, that:
- watches the manual's source for changes and when they occur — rebuilds
- HTTP serves the manual, injecting a script that triggers reload on changes
- opens the manual in the default browser
Syntax
As per RFC 0072, all new documentation content should be written in CommonMark Markdown dialect.
Additional syntax extensions are available, all of which can be used in NixOS option documentation. The following extensions are currently used:
Tables
Tables, using the GitHub-flavored Markdown syntax.
Anchors
Explicitly defined anchors on headings, to allow linking to sections. These should be always used, to ensure the anchors can be linked even when the heading text changes, and to prevent conflicts between automatically assigned identifiers.
It uses the widely compatible header attributes syntax:
## Syntax {#sec-contributing-markup}
Note
NixOS option documentation does not support headings in general.
Inline Anchors
Allow linking arbitrary place in the text (e.g. individual list items, sentences…).
They are defined using a hybrid of the link syntax with the attributes syntax known from headings, called bracketed spans:
- []{#ssec-gnome-hooks-glib} `glib` setup hook will populate `GSETTINGS_SCHEMAS_PATH` and then `wrapGAppsHook` will prepend it to `XDG_DATA_DIRS`.
Automatic links
If you omit a link text for a link pointing to a section, the text will be substituted automatically. For example [](#chap-contributing)
.
This syntax is taken from MyST.
Roles
If you want to link to a man page, you can use {manpage}`nix.conf(5)`
. The references will turn into links when a mapping exists in doc/manpage-urls.json
.
A few markups for other kinds of literals are also available:
{command}`rm -rfi`
{env}`XDG_DATA_DIRS`
{file}`/etc/passwd`
{option}`networking.useDHCP`
{var}`/etc/passwd`
These literal kinds are used mostly in NixOS option documentation.
This syntax is taken from MyST. Though, the feature originates from reStructuredText with slightly different syntax.
Admonitions
Set off from the text to bring attention to something.
It uses pandoc’s fenced div
s syntax:
::: {.warning}
This is a warning
:::
The following are supported:
Definition lists
For defining a group of terms:
pear
: green or yellow bulbous fruit
watermelon
: green fruit with red flesh