aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-09-02Apply suggestions from code reviewMatthew Bauer
2022-09-01Don’t add a space after attrs completion in zshMatthew Bauer
This matches the behavior of bash. We don’t want to add a space after completion on attrs. Uses -S. Switches to new compadd style comppletions instead of _describe. Shouldn’t have any negative issues from what I can tell.
2022-08-29Merge pull request #6972 from sashashura/patch-1Eelco Dolstra
GitHub Workflows security hardening
2022-08-29Merge pull request #6968 from fricklerhandwerk/man-no-weblinksEelco Dolstra
do not render relative links in help pages
2022-08-28Update backport.ymlAlex
2022-08-26do not render relative links in help pagesValentin Gagarin
this simplifies the setup a lot, and avoids weird looking `./file.md` links showing up. it also does not show regular URLs any more. currently the command reference only has few of them, and not showing them in the offline documentation is hopefully not a big deal. instead of building more special-case solutions, clumsily preprocessing the input, or issuing verbal rules on dealing with URLs, should better be solved sustainably by not rendering relative links in `lowdown`: https://github.com/kristapsdz/lowdown/issues/105
2022-08-26Merge pull request #6954 from winterqt/darwin-sandbox-trustdEelco Dolstra
fix(libstore): allow access to trustd on macOS
2022-08-25Merge pull request #6961 from edolstra/bump-versionEelco Dolstra
Bump version
2022-08-25Bump versionEelco Dolstra
2022-08-24Merge pull request #6959 from edolstra/prepare-releaseEelco Dolstra
Prepare release
2022-08-24Merge pull request #6958 from edolstra/fix-progress-bar-flickerEelco Dolstra
Fix progress bar flicker with -L
2022-08-24Branch 2.11 release notesEelco Dolstra
2022-08-24Bump versionEelco Dolstra
2022-08-24Fix progress bar flicker with -LEelco Dolstra
This was caused by -L calling setLogFormat() again, which caused the creation of a new progress bar without destroying the old one. So we had two progress bars clobbering each other. We should change 'logger' to be a smart pointer, but I'll do that in a future PR. Fixes #6931.
2022-08-24Merge pull request #6956 from edolstra/fix-eval-cacheEelco Dolstra
Fix evaluation cache
2022-08-24Fix evaluation cacheEelco Dolstra
98e361ad4c1a26d4ffe4762a6f33bb9e39321a39 introduced a regression where previously stored attributes were replaced by placeholders. As a result, a command like 'nix build nixpkgs#hello' had to be executed at least twice to get caching. This code does not seem necessary for suggestions to work.
2022-08-24fix(libstore): allow access to trustd on macOSWinter
2022-08-24Merge pull request #6612 from NixOS/parallel-nix-copyEelco Dolstra
Make nix copy parallel again
2022-08-24Remove redundant FinallyEelco Dolstra
2022-08-24Fix macOS buildEelco Dolstra
2022-08-24Merge pull request #6945 from jsoref/nix-setup-tweakEelco Dolstra
darwin-install: fix shell hint
2022-08-24Merge pull request #6946 from rickynils/fix_serve_protocol_version_checkEelco Dolstra
Fix a misplaced parenthese in serve protocol check
2022-08-24Fix a misplaced parenthese in serve protocol checkRickard Nilsson
This issue made it impossible for clients using a serve protocol of version <= 2.3 to use the `cmdBuildDerivation` command of servers using a protocol of version >= 2.6. The faulty version check makes the server send back build outputs that the client is not expecting.
2022-08-23darwin-install: fix shell hintJosh Soref
2022-08-23Merge pull request #6944 from edolstra/bash-varsEelco Dolstra
nix develop: Ignore some more bash special variables
2022-08-23Merge pull request #6909 from ncfavier/json-pathsEelco Dolstra
JSON: print paths as strings without copying them to the store
2022-08-23nix develop: Ignore some more bash special variablesEelco Dolstra
Fixes #6940.
2022-08-23Merge pull request #6902 from centromere/optional-nixpkgsEelco Dolstra
docker.nix: Provide boolean for whether to bundle nixpkgs
2022-08-23Merge pull request #6887 from winterqt/specify-bashinteractive-outputsEelco Dolstra
nix-shell: specify which outputs from bashInteractive to build
2022-08-23Revert to `copyStore = true` for `nix-instantiate` and `nix-env`Naïm Favier
2022-08-23Merge pull request #6907 from fricklerhandwerk/language-propertiesEelco Dolstra
reword description of language properties
2022-08-23Fix a hang in nix-copy-ssh.shEelco Dolstra
This hang for some reason didn't trigger in the Nix build, but did running 'make installcheck' interactively. What happened: * Store::addMultipleToStore() calls a SinkToSource object to copy a path, which in turn calls LegacySSHStore::narFromPath(), which acquires a connection. * The SinkToSource object is not destroyed after the last bytes has been read, so the coroutine's stack is still alive and its destructors are not run. So the connection is not released. * Then when the next path is copied, because max-connections = 1, LegacySSHStore::narFromPath() hangs forever waiting for a connection to be released. The fix is to make sure that the source object is destroyed when we're done with it.
2022-08-22IndentationEelco Dolstra
2022-08-22Merge remote-tracking branch 'origin/master' into parallel-nix-copyEelco Dolstra
2022-08-22Merge pull request #6937 from edolstra/fix-replEelco Dolstra
nix repl: Stop the progress bar
2022-08-22JSON: add missing newlinesNaïm Favier
after `nix eval --json` and `nix-instantiate --eval --json`.
2022-08-22JSON: print paths as strings without copying them to the storeNaïm Favier
Makes `printValueAsJSON` not copy paths to the store for `nix eval --json`, `nix-instantiate --eval --json` and `nix-env --json`. Fixes https://github.com/NixOS/nix/issues/5612
2022-08-22Merge pull request #6926 from rapenne-s/download_limitEelco Dolstra
add a nix.conf option to set a download speed limit
2022-08-22Merge pull request #6932 from jack1142/patch-1Eelco Dolstra
Fix default profile path for root in nix profile documentation
2022-08-22nix repl: Stop the progress barEelco Dolstra
The repl was broken since c3769c68465bae971ab6bb48cfcdea85b61ea83a. In general, the progress bar is incompatible with the repl.
2022-08-22Merge pull request #6923 from ncfavier/nix-env-incomplete-jsonEelco Dolstra
Avoid producing incomplete JSON
2022-08-22SpellingEelco Dolstra
2022-08-22Merge pull request #6916 from edolstra/tmp-slashEelco Dolstra
Installer: Don't assume TMPDIR ends in a slash
2022-08-22Merge pull request #2 from abathur/tmp-slashEelco Dolstra
install: only create $TMPDIR if missing
2022-08-20Better documentation wordingSolène Rapenne
Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
2022-08-20Fix default profile path for root in nix profile documentationJakub Kuczys
2022-08-19install: only create TMPDIR if missingTravis A. Everett
2022-08-19add a nix.conf option to set a download speed limitSolene Rapenne
2022-08-19Merge pull request #6925 from pennae/fod-register-memoryEelco Dolstra
don't read outputs into memory for output rewriting
2022-08-19don't read outputs into memory for output rewritingpennae
RewritingSink can handle being fed input where a reference crosses a chunk boundary. we don't need to load the whole source into memory, and in fact *not* loading the whole source lets nix build FODs that do not fit into memory (eg fetchurl'ing data files larger than system memory).