summary refs log tree commit diff
path: root/doc/contributing
Commit message (Collapse)AuthorAge
* Move misc/vim-plugins to applications/editors/vim/pluginsAndersonTorres2022-02-24
|
* doc: discourage setting `phases`, document/encourage runHook instead.Guillaume Girol2022-02-12
| | | | | Source: https://matrix.to/#/!kjdutkOsheZdjqYmqp:nixos.org/$mff3KCoPY5sfgsUhKn0e4va7hnz7KMXARaO2_UaLNM4?via=nixos.org&via=matrix.org&via=nixos.dev
* doc/coding-conventions: Fix version attribute suffix to match realityRobert Hensing2022-01-26
| | | | | | | | | | | | | The current doc is wildly out of touch with reality. A regex search shows the following stats. ``` Style example Frequency Regex used nix-2-5: 8 [a-zA-Z]-[0-9]+(-[0-9]+)+ = nix-2_5: 17 [a-zA-Z]-[0-9]+(_[0-9]+)+ = nix_2_5: 689 [a-zA-Z]_[0-9]+(_[0-9]+)+ = nix_2-5: 1 [a-zA-Z]_[0-9]+(-[0-9]+)+ = ```
* doc: fix broken linkNicolas Benes2022-01-15
| | | | | The file was renamed/modified in 3f40ca4 but the documentation was not updated. Closes #155049.
* Merge pull request #152451 from ncfavier/unix-man-urlsRenaud2022-01-03
|\ | | | | doc: remove reference to unix-man-urls.lua
| * doc: remove reference to unix-man-urls.luaNaïm Favier2021-12-28
| |
* | Merge pull request #149867 from erikarvstedt/docs-stable-releaseJan Tojnar2021-12-30
|\ \ | |/ |/| docs: improve section `Stable release branches`
| * docs: improve section `Stable release branches`Erik Arvstedt2021-12-28
| | | | | | | | | | | | - Explain branch naming scheme for stable release branches - Split into subsections `Automatically backporting ...` and `Manually backporting...`.
* | doc: minimize mentions of nix-env -i without -A in nixpkgs manualGuillaume Girol2021-12-18
|/
* doc: fix typoSandro Jäckel2021-10-28
|
* doc/contributing: add lib.optional (#121251)Sandro2021-10-05
| | | Co-authored-by: Cole Helbling <cole.e.helbling@outlook.com>
* Merge pull request #130047 from NixOS/doc-manpage-roleJan Tojnar2021-09-07
|\ | | | | doc: Add support for manpage references
| * doc: Linkify man page referencesJan Tojnar2021-07-13
| |
| * doc: Add support for MyST rolesJan Tojnar2021-07-13
| | | | | | | | | | | | | | | | Officially, only the manpage role is supported at the moment. Unlike in rST, the syntax uses braces instead of colons: {manpage}`nix.conf(5)`
* | nixpkgs-docs: when to prefer passthru.tests over installCheckPhaseArnout Engelen2021-08-14
| | | | | | | | | | | | | | | | | | | | And mention you can have either lightweight 'package' or more heavyweight 'NixOS' (module) tests. This was suggested at https://github.com/ryantm/nixpkgs-update/issues/260#issuecomment-821287971 and discussed further at https://github.com/NixOS/nixpkgs/pull/119731
* | Merge pull request #130207 from hercules-ci/passthru-sensible-timeoutdavidak2021-08-02
|\ \ | | | | | | doc/coding-conventions: Increase passthru test timeout 3s -> 60s
| * | doc/coding-conventions: Increase passthru test timeout 3s -> 60sRobert Hensing2021-07-14
| |/ | | | | | | | | | | | | | | | | | | | | | | | | 3s is too small a margin for a loaded slow system to start a bloated program. This leads to problems when tests are written on decent dev hardware but later run on build farms of potentially slower hardware, particularly in the case of non x86. The chance of needing the timeout is actually very small, so those rare 57s are a reasonable price to pay for fewer timeouts on build farms, each of which should be investigated and usually fixed by increasing the timeout.
* | Merge pull request #126001 from est31/masterRyan Mulligan2021-07-28
|\ \ | | | | | | Add the -a param to the docs
| * | Add the -a param to the docsest312021-06-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | The patch utility does not understand git formatted patches. For text files, there is no problem, but binary files use the git format. The -a param makes git diff put binary files into the patch in raw format that can be understood by the patch tool.
* | | manuals: Describe how to link NixOS tests from packagesNiklas Hambüchen2021-07-27
| |/ |/|
* | CONTRIBUTING.md: Move to repo root, where it is more visible.Niklas Hambüchen2021-06-26
| | | | | | | | | | | | | | We found that many users found it difficult to locate this document. Github supports it in the root, see: https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/setting-guidelines-for-repository-contributors
* | doc/manual: Add backport criteriaJonathan Ringer2021-06-09
| |
* | doc: Use markdown syntax for xrefsJan Tojnar2021-06-07
| | | | | | | | | | | | Syntax is taken from MyST: https://myst-parser.readthedocs.io/en/latest/using/syntax.html#targets-and-cross-referencing
* | doc: prepare for commonmarkJan Tojnar2021-06-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | We are still using Pandoc’s Markdown parser, which differs from CommonMark spec slightly. Notably: - Line breaks in lists behave differently. - Admonitions do not support the simpler syntax https://github.com/jgm/commonmark-hs/issues/75 - The auto_identifiers uses a different algorithm – I made the previous ones explicit. - Languages (classes) of code blocks cannot contain whitespace so we have to use “pycon” alias instead of Python “console” as GitHub’s linguist While at it, I also fixed the following issues: - ShellSesssion was used - Removed some pointless docbook tags.
* | doc: Document markup syntaxJan Tojnar2021-06-06
|/ | | | | | | Not depicted: - Diagrams using Lua filter and dot - fenced code attributes (enabled by the attributes extension)
* Merge pull request #125494 from siraben/remove-stdenv-libSandro2021-06-05
|\
| * coding-conventions: remove reference to stdenv.libBen Siraphob2021-06-03
| |
* | doc: Fix make in nix-shellJan Tojnar2021-06-05
|/ | | | When running make manually, makeFlags will not be passed. Let’s just use an environment variable.
* doc/coding-conventions: Add documentation for fetchpatch optional argumentsStefan Frijters2021-05-28
|
* backport action: document the workflowDomen Kožar2021-05-25
|
* doc/submitting-changes: should -> mustAlyssa Ross2021-05-23
| | | | | | | To me, as a native English speaker, this doesn't change the meaning of the sentence at all. But to a non-native speaker, this can read like the staging-next rules are only recommendations. Let's make this clearer.
* Merge pull request #121252 from NixOS/SuperSandro2000-patch-1Sandro2021-05-17
|\ | | | | doc/contributing: add unnecessary string conversions
| * doc/contributing: add unnecessary string conversionsSandro2021-04-30
| |
* | Merge pull request #120534 from davidak/package-testsLuke Granger-Brown2021-05-01
|\ \ | | | | | | doc: add instructions for creating package tests
| * | doc: add instructions for creating package testsdavidak2021-04-24
| | |
* | | doc/contributing: clarify stdenv.lib deprecationSandro2021-04-30
| |/ |/|
* | doc/submitting-changes: remove incorrect remarkPatrick Hilhorst2021-04-26
|/ | | | Tests don't only apply to NixOS modules, see for example tests/vscodium
* doc/contributing/*.xml: Convert to markdownBobby Rong2021-04-23
|
* Merge pull request #116475 from davidak/doc-remove-packagesSamuel Dionne-Riel2021-04-21
|\ | | | | doc: add instructions to remove a package
| * doc: add instructions to remove a packagedavidak2021-04-20
| | | | | | | | | | Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com>
* | docs: correct some englishEvils2021-04-20
| |
* | documentation: Add content about Vulnerability roundupsPamplemousse2021-03-17
|/ | | | Signed-off-by: Pamplemousse <xav.maso@gmail.com>
* doc: FormatRobert Hensing2021-03-04
|
* docs: clarify stagingThomas Bereknyei2021-02-19
| | | | | | Specify that the merges from master to staging-next to staging are performed by GitHub actions. This helps the reader understand the relationship between the branches.
* Merge pull request #109663 from Pamplemousse/documentationRobert Hensing2021-01-26
|\ | | | | documention corrections
| * documentation: correct documentation helpPamplemousse2021-01-19
| | | | | | | | | | | | | | `PANDOC_LUA_FILTERS_DIR` is set in `makeFlags` in `doc/default.nix`, and needs to be explicitely passed to `make` when called manually. Signed-off-by: Pamplemousse <xav.maso@gmail.com>
* | doc: add function argument order convention (#110060)V2021-01-20
|/ | | | | | | | | | | * doc: add function argument order convention Ordering by usage is the de facto ordering given to arguments. It's logical, and makes finding argument usage easier. Putting lib first is common in NixOS modules, so it's reasonable to mirror this in nixpkgs proper. Additionally, it's not a package as such, has zero dependencies, and can be found used anywhere in a derivation. * doc: clean up usage of lib
* doc: add "prefer lib over stdenv.lib" conventionAlyssa Ross2021-01-10
| | | | | | | | I think we should have something in the manual people can point to about this, to avoid rehashing it over and over in PRs. "stdenv.lib" makes it look like lib is part of stdenv, which it isn't, and makes it even more confusing as a newcomer to figure out what stdenv is (and isn't).
* doc: Add staging workflow diagramJan Tojnar2020-12-09
|
* doc: Clean up submitting changesJan Tojnar2020-12-05
|