about summary refs log tree commit diff
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
2022-12-17doc: fix typosfigsoda13-17/+17
2022-12-16cudaPackages: add cudaFlags (#205351)Jason Miller1-0/+19
* cudaPackages: add cudaFlags * cudaNames -> cudaMicroarchitectureNames * update documentation, remove config for static library removal * doc link added to flags * fix whitespace in assignment
2022-12-12Merge pull request #205768 from hercules-ci/remove-numbers-from-manualsRobert Hensing1-3/+6
doc: Remove all section numbers
2022-12-12doc: Remove all section numbersRobert Hensing1-3/+6
Simplicity. We use anchors nowadays. Nobody should be printing this.
2022-12-11Merge pull request #204626 from fricklerhandwerk/ifd-policyRobert Hensing2-6/+24
document Import From Derivation (IFD) policy
2022-12-10Update doc/contributing/coding-conventions.chapter.mdValentin Gagarin1-1/+1
Co-authored-by: Mostly Void <dit7ya@users.noreply.github.com>
2022-12-09vim-full: rename from vim_configurableNaïm Favier1-4/+13
Avoids confusion: `vim-full`'s build-time features are configurable, but both `vim` and `vim-full` are *customizable* (in the sense of user configuration).
2022-12-09Merge pull request #126213 from ryantm/lib-doc-genValentin Gagarin5-1867/+6
doc: auto-generate asserts and attrset library docs
2022-12-08Merge pull request #201902 from ↵Robert Hensing1-0/+4
ck3mp3r/dockertools-architecture-in-config-200725 Adding ability to set image architecture when creating OCI images using DockerTools
2022-12-08doc: auto-generate asserts and attrset library docsRyan Mulligan5-1867/+6
If all the docs are auto-generated, it should be easier to convert them to Commonmark. Co-Authored-By: Valentin Gagarin <valentin.gagarin@tweag.io> Co-Authored-By: Silvan Mosberger <contact@infinisil.com>
2022-12-08Merge pull request #205187 from Mic92/cue-validatorJörg Thalheim2-0/+94
cue: init writeCueValidator
2022-12-08cue: add documentation on writeCueValidatorRaito Bezarius2-0/+94
2022-12-08dockerTools: allowing architecture to be specifiedChristian Kemper1-0/+4
... for buildImage, buildLayeredImage and streamLayeredImage, adding docs and tests.
2022-12-08doc/go: fix linkzowoq1-1/+1
2022-12-07doc: add hint about lib.fakeSha256 to go section (#204132)Manuel1-1/+7
* doc: add hint about lib.fakeSha256 to go section Found it here: https://stackoverflow.com/a/71934521/1633985 Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io>
2022-12-07docs: fixup wording and formatting on JavaScriptValentin Gagarin2-6/+9
2022-12-07document Import From Derivation (IFD) policyValentin Gagarin2-1/+16
2022-12-05Merge pull request #204257 from raboof/nixpkgs-manual-update-meta-attributesValentin Gagarin1-48/+2
manual: update meta-attributes section
2022-12-04Merge pull request #204343 from urandom2/sridocJörg Thalheim30-105/+106
doc: use sri hash syntax
2022-12-04doc: use sri hash syntaxColin Arnott30-105/+106
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-12-03Merge pull request #203520 from figsoda/nextestfigsoda1-0/+17
rustPlatform.buildRustPackage: add cargo-nextest support
2022-12-03manual: update meta-attributes sectionArnout Engelen1-48/+2
Promote the `maintainers = with maintainers; [ ]` syntax as that is most common in nixpkgs, and remove the `nix-env` example which doesn't work like that anymore.
2022-11-29doc: Use POSIX syntax to source fileVictor Engmark1-1/+1
Avoids bashism in case another shell is active.
2022-11-29doc: Quote variable referencesVictor Engmark1-5/+5
2022-11-29doc: Fix grammarVictor Engmark1-1/+1
2022-11-28docs/rust: document `cargoNextestHook` and `useNextest`figsoda1-0/+17
2022-11-26Merge pull request #172736 from infinisil/docker-nix-shellSilvan Mosberger1-0/+139
2022-11-23doc/languages-frameworks/javascript: update deps hash in exampleWinter1-1/+1
2022-11-22carnix,cratesIO: removefigsoda1-221/+0
2022-11-21npmHooks.npmInstallHook: pass install flags to pruneWinter1-1/+1
2022-11-21Merge pull request #200082 from panicgh/fetchgit-sparse-checkoutSandro1-4/+4
2022-11-21Merge pull request #187921 from amjoseph-nixpkgs/pr/manual/rust/buildRustYArtturi1-2/+2
doc/../rust.section.md: prominently mention `buildRustXX` names
2022-11-21Merge pull request #196251 from ↵Robert Hensing1-0/+64
hercules-ci/testers-build-failure-and-equal-contents `testers`: Add `testBuildFailure` and `testEqualContents`
2022-11-20sphinxHook: inherit from python3PackagesMartin Weinelt1-1/+1
2022-11-19splice.nix: start deprecating nativeDrv and crossDrvArtturin1-1/+1
2022-11-15fetchgit: make sparseCheckout a list of stringsNicolas Benes1-4/+4
The `sparseCheckout` argument allows the user to specify directories or patterns of files, which Git uses to filter files it should check-out. Git expects a multi-line string on stdin ("newline-delimited list", see `git-sparse-checkout(1)`), but within nixpkgs it is more consistent to use a list of strings instead. The list elements are joined to a multi-line string only before passing it to the builder script. A deprecation warning is emitted if a (multi-line) string is passed to `sparseCheckout`, but for the time being it is still accepted.
2022-11-14doc/vim: Clarify buildVimPlugin/buildVimPluginFrom2NixJocelyn Thode1-1/+3
2022-11-13Merge pull request #82131 from Ericson2314/bsd-crossJohn Ericson1-2/+2
FreeBSD packages: Init at 13.1
2022-11-10Merge master into staging-nextgithub-actions[bot]2-0/+51
2022-11-10patchRcPathBash, patchRcPathCsh, patchRcPathFish, patchRcPathPosix: initShamrock Lee2-0/+51
Init patchRcPath hooks, which provides utilities to patch shell scripts to be sourced by users. Add test cases and documentation.
2022-11-09Merge master into staging-nextgithub-actions[bot]1-0/+55
2022-11-09buildNpmPackage: initWinter1-0/+55
2022-11-09Merge master into staging-nextgithub-actions[bot]2-4/+4
2022-11-08Merge master into staging-nextgithub-actions[bot]1-1/+1
2022-11-08nixpkgs/doc: fix admonition syntaxRyan Mulligan2-4/+4
Match admonition syntax in https://nixos.org/manual/nixpkgs/unstable/#chap-contributing
2022-11-07nixpkgs/doc/stdenv: fix admonition classRyan Mulligan1-1/+1
Change to match the formatting of the other admonitions that use classes. This was breaking the mmdoc output.
2022-11-06Merge master into staging-nextgithub-actions[bot]1-1/+1
2022-11-05Revert "lib,doc: remove obvious usages of toString on paths"Anderson Torres1-1/+1
2022-11-06Merge master into staging-nextgithub-actions[bot]1-1/+1
2022-11-06lib,doc: remove obvious usages of toString on pathsArtturin1-1/+1
It gives a warning on the lazy-trees branch of Nix (NixOS/nix#6530) one of these was also giving me an error (the one in lib/trivial probably) ``` $ nix build warning: applying 'toString' to path '/home/artturin/nixgits/my-nixpkgs/nixos/modules/installer/sd-card/sd -image-aarch64.nix' and then accessing it is deprecated, at /home/artturin/nixgits/my-nixpkgs/lib/modules. nix:349:99 warning: applying 'toString' to path '/home/artturin/nixgits/my-nixpkgs/.git' and then accessing it is dep recated, at /home/artturin/nixgits/my-nixpkgs/lib/sources.nix:35:32 warning: applying 'toString' to path '/home/artturin/nixgits/my-nixpkgs/nixos/modules/system/etc/etc.nix' and then accessing it is deprecated, at «stdin»:0 warning: applying 'toString' to path '/home/artturin/nixgits/my-nixpkgs/nixos/modules/system/etc/etc-activ ation.nix' and then accessing it is deprecated, at «stdin»:0 warning: applying 'toString' to path '/home/artturin/nixgits/my-nixpkgs/nixos/modules/installer/sd-card/sd -image-aarch64.nix' and then accessing it is deprecated, at «stdin»:0 error: cannot decode virtual path '/nix/store/virtual0000000000000000000000005-source' (use '--show-trace' to show detailed location information) ```