about summary refs log tree commit diff
path: root/doc/builders/packages
AgeCommit message (Collapse)AuthorFilesLines
2023-11-07doc: move doc/builders/packages -> doc/packagesYueh-Shun Li22-945/+0
2023-09-12noto-fonts-emoji → noto-fonts-color-emojinicoo1-2/+2
Clarify that the monochrome font is not included, per #221181. The new name is also coherent with the name of the font, according to `fontconfig`: Noto Color Emoji.
2023-08-25emacs: remove outdated doc about package initializationLin Jian1-4/+0
Since Emacs 27[1], there is no need to call package-initialize in the init file. [1]: https://git.savannah.gnu.org/cgit/emacs.git/tree/etc/NEWS.27?id=cae528457cb862dc886a34240c9d4c73035b6659#n227
2023-08-25emacs: update doc about emacs.pkgs.withPackagesLin Jian1-1/+1
2023-08-14treewide: `overrideScope'` -> `overrideScope`Artturin1-2/+2
`lib.makeScope` `overrideScope'` has been renamed to `overrideScope` `fd --type f | xargs sd --string-mode "overrideScope'" "overrideScope"`
2023-07-24treewide: rename fonts.fonts to fonts.packagesSandro Jäckel1-1/+3
2023-07-01doc: render nixpkgs manual with nrdpennae3-30/+28
also updates nixdoc to 2.3.0. the nixdoc update is not a separate commit because that would leave the manual build broken for one commit, potentially breaking bisects and rebases.
2023-01-24doc: fix broken linksNaïm Favier2-3/+3
2022-12-27doc,nixos/doc: unescape apostrophesNaïm Favier1-1/+1
Leftovers from the CommonMark conversion.
2022-12-04doc: use sri hash syntaxColin Arnott4-6/+6
The nixpkgs manual contains references to both sri hash and explicit sha256 attributes. This is at best confusing to new users. Since the final destination is exclusive use of sri hashes, see nixos/rfcs#131, might as well push new users in that direction gently. Notable exceptions to sri hash support are builtins.fetchTarball, cataclysm-dda, coq, dockerTools.pullimage, elixir.override, and fetchCrate. None, other than builtins.fetchTarball, are fundamentally incompatible, but all currently accept explicit sha256 attributes as input. Because adding backwards compatibility is out of scope for this change, they have been left intact, but migration to sri format has been made for any using old hash formats. All hashes have been manually tested to be accurate, and updates were only made for missing upstream artefacts or bugs.
2022-07-28nixpkgs/doc: remove unused `unfree.xml`Arnout Engelen1-13/+0
This section was broken out into its own file in efb55d2a42e but apparently never actually got included anywhere. Since then a more detailed section on using unfree packages has been introduced. Copied the introduction and removed the rest of the file.
2022-06-01doc: firefox: Show how to use PKCS#11 Proxy ModuleKlemens Nanni1-4/+8
`p11-kit-proxy.so` makes it able to use multiple PKCS#11 modules and manage them through p11-kit(8). Fix indentation while here.
2022-03-10doc/builders: fix typosMartino Fontana17-62/+61
2022-03-02treewide: remove steam-run-nativeJonathan Ringer1-1/+1
2021-12-18doc: minimize mentions of nix-env -i without -A in nixpkgs manualGuillaume Girol1-1/+1
2021-09-22nixpkgs/doc/glibc: better glibc linkJörg Thalheim1-2/+3
also replace unicode symbol in case some environment cannot reproduce the encoding or font symbol.
2021-09-21Merge pull request #137601 from fzakaria/faridzakaria/glibc-netbaseJörg Thalheim2-0/+18
glibc: allow environment variable for /etc/ files (i.e. /etc/protocols)
2021-09-19glibc: add dependency on netbase /etc/protocolsFarid Zakaria2-0/+18
Add an explicit dependency on netbase for /etc/protocols Certain functions in glibc look for files present in /etc such as getprotobyname which reads /etc/protocols. If you are using Nix over a Linux installation, this file may not be present, and therefore it will cause errors. - add netbase as a new package in nixpks - add a dependency in glibc on it using postPatchPhase and substitute the path Fixes #124401
2021-08-26Merge master into staging-nextgithub-actions[bot]1-2/+5
2021-08-22firefox: Added checks for new addon behaviour since v91Luis-Hebendanz1-2/+5
2021-08-12docs: adjust to the new structure of kernel packagesDominik Xaver Hörl1-3/+3
2021-07-12emacs: fix overrideScope' examplesAlexander Ben Nasrallah1-1/+1
2021-07-06Link to Libera, Matrix instead of FreenodeslotThe1-1/+1
The project has moved away from Freenode as an IRC network[1], and there is now a quite large channel on Libera. As such, we should point users towards that instead. This also changes all examples to refer to libera instead of freenode as, with the recent deletion of all freenode channels, it is perhaps where most communities are to be found nowadays. Finally, also link to the official Matrix room[2] as an alternative to IRC. Related: https://github.com/NixOS/nixpkgs/pull/129384 [1]: https://discourse.nixos.org/t/join-us-on-matrix-at-nix-nixos-org-migrating-from-freenode [2]: https://github.com/NixOS/rfcs/pull/94
2021-07-01docs: update Steam instructions to use steam-run-native packageChris Martin1-10/+1
pkgs.steam-run-native is defined as exactly the expression that these instructions tell you to write, so the instruction is no longer necessary since we can just tell you to use that.
2021-06-07doc: prepare for commonmarkJan Tojnar6-21/+24
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.
2021-04-22Merge pull request #108919 from bryanasdev000/doc-dlibSandro3-25/+14
dlib: Update doc to use CommonMark
2021-04-22Merge pull request #118269 from midchildan/feat/fuse/add-darwinSandro1-0/+26
2021-04-20docs: add FUSE packaging tip for Darwinmidchildan1-0/+26
2021-04-13doc/builders/packages/dlib.xml: Convert to markdownBryan A. S3-25/+14
Signed-off-by: Bryan A. S <bryanasdev000@gmail.com>
2021-04-12Merge pull request #103546 from mnacamura/cdda-small-fixSandro1-0/+35
2021-04-01Delete citrix.xmlSandro1-48/+0
2021-03-31Merge pull request #108918 from bryanasdev000/doc-citrixRyan Mulligan2-1/+33
citrix: Update doc to use CommonMark
2021-03-24doc: add section for FUSEmidchildan2-0/+20
2021-03-22doc/builders/packages/citrix.xml: Convert to markdownBryan A. S2-1/+33
Signed-off-by: Bryan A. S <bryanasdev000@gmail.com>
2021-03-21Merge pull request #108921 from bryanasdev000/doc-ibusSandro3-58/+39
ibus: Update doc to use CommonMark
2021-03-07Merge pull request #115322 from dotlambda/doc-ltJörg Thalheim1-1/+1
doc: replace &lt; with < in Markdown
2021-03-07doc: replace &lt; with < in MarkdownRobert Schütz1-1/+1
2021-03-04doc: FormatRobert Hensing1-0/+2
2021-02-16doc: Convert Eclipse from Docbook to CommonMarkNiklaus Giger3-73/+65
Fixes: https://github.com/NixOS/nixpkgs/issues/105251
2021-02-14doc/builders/packages/ibus.xml: Convert to markdownBryan A. S3-58/+39
Signed-off-by: Bryan A. S <bryanasdev000@gmail.com>
2021-02-13Merge pull request #108456 from siraben/elm-docs-mdtaku03-18/+12
Convert Elm from Docbook to Commonmark
2021-01-13treewide: emacsPackages -> emacs.pkgs & emacsWithPackages -> ↵adisbladis1-5/+5
emacs.pkgs.withPackages The previous names are now aliases and shouldn't be used anywhere inside nixpkgs.
2021-01-11fishPlugins.buildFishPlugin: rename checkFunctionPath parameterpacien1-1/+1
2021-01-11doc/fish: document fish plugins packagingpacien2-0/+51
2021-01-05Convert Elm from Docbook to CommonmarkBen Siraphob3-18/+12
2021-01-01doc: explicit Markdown anchors for top-level headings; remove metadataRyan Mulligan1-1/+1
I used the existing anchors generated by Docbook, so the anchor part should be a no-op. This could be useful depending on the infrastructure we choose to use, and it is better to be explicit than rely on Docbook's id generating algorithms. I got rid of the metadata segments of the Markdown files, because they are outdated, inaccurate, and could make people less willing to change them without speaking with the author.
2020-12-22doc: convert Steam to CommonMarkJustus K3-126/+70
2020-12-17Merge pull request #106845 from AndersonTorres/wip-documentationJan Tojnar3-14/+6
2020-12-16Convert locales from DocBook to CommonMarkAndersonTorres3-14/+6
2020-12-15firefox: wrapper updating an addon perserves addon settingsLuis Hebendanz1-2/+2