Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-12-21 | Factor out the path realisation bit of IFD | regnat | |
2021-12-17 | Merge pull request #5787 from edolstra/unshare-fs | Eelco Dolstra | |
Ignore EPERM when unsharing FS state | |||
2021-12-17 | Merge pull request #5047 from symphorien/fix-nix-channel | Théophane Hufschmitt | |
nix-channel: use nix-env -i --remove-all to upgrade | |||
2021-12-17 | Test the update of multiple channels | regnat | |
Make sure that `nix-channel --update` won’t accidentaly remove one | |||
2021-12-16 | Ignore EPERM when unsharing FS state | Eelco Dolstra | |
On Docker (but not podman), unshare(CLONE_FS) fails with EPERM. So let's ignore it and hope nothing bad happens. Attempted fix for #5777. | |||
2021-12-16 | Fix docker instructions | Eelco Dolstra | |
2021-12-16 | Merge pull request #5786 from Infinisil/groupBy-tests | Eelco Dolstra | |
Add a test case for builtins.groupBy | |||
2021-12-16 | Add a test case for builtins.groupBy | Silvan Mosberger | |
2021-12-16 | Merge pull request #5783 from johnae/master | Eelco Dolstra | |
docker: fix image so that nix profile works | |||
2021-12-16 | docker: fix image so that nix profile works | John Axel Eriksson | |
nix profile will otherwise throw this error: error: path '/nix/var/nix/profiles/default/manifest.nix' is not in the Nix store That's not entirely true since manifest.nix is within a directory in the nix store but nix profile seems to require the manifest.nix itself to be a store path. | |||
2021-12-16 | Merge pull request #5774 from jessebrennan/patch-1 | Eelco Dolstra | |
List aarch64 as supported macOS hardware | |||
2021-12-16 | Merge pull request #5779 from peeley/fix-shell-doc-typo | Eelco Dolstra | |
Fix typo in `nix shell --help` doc | |||
2021-12-15 | Fix typo in `src/nix/shell.md` | Noah Snelson | |
Changed `If not command` to `If no command`, also specified that the default shell launched in `nix shell` can be specified with `$SHELL`. | |||
2021-12-15 | List aarch64 as supported macOS hardware | jesse | |
Resolves #5767 | |||
2021-12-15 | pkgconfig -> pkg-config | Eelco Dolstra | |
2021-12-15 | Revert "update flake.nix to 21.11" | Eelco Dolstra | |
This reverts commit ad9322a48fce955fb30b111b0fb5c3b8007a6e2e because it breaks hydraJobs.buildStatic.* and the evaluation of some tests. | |||
2021-12-14 | Merge pull request #5769 from NixOS/ca/get-build-stats | Eelco Dolstra | |
Add a crude tracing mechansim for the build results | |||
2021-12-14 | Merge pull request #5623 from yorickvP/fix-5621 | Théophane Hufschmitt | |
flakes: fix boolean and int nixConfig values | |||
2021-12-14 | Merge pull request #5771 from edolstra/single-file-flake-inputs | Théophane Hufschmitt | |
Re-allow inputs.x.url = "/path/to/file" | |||
2021-12-14 | Add a test for boolean config options in flakes | regnat | |
2021-12-14 | Merge pull request #5702 from baloo/baloo/hide-non-reproducible-settings | Théophane Hufschmitt | |
reproducibility: hide non-reproducible settings from manual | |||
2021-12-14 | Merge pull request #5366 from trofi/speedup-ca-query | Théophane Hufschmitt | |
ca-specific-schema.sql: add index on RealisationsRefs(referrer) | |||
2021-12-14 | Bump version | Eelco Dolstra | |
2021-12-14 | Merge branch 'nixos-21.11' of https://github.com/Mic92/nix-1 | Eelco Dolstra | |
2021-12-13 | queryMissing(): Use a bigger thread pool | Eelco Dolstra | |
This is a temporary hack until we make queryMissing() async. Closes #5324. | |||
2021-12-13 | Merge pull request #5725 from ConnorBaker/master | Eelco Dolstra | |
Add support for .tar.gz shorthand (.tgz) to TarballInputScheme | |||
2021-12-13 | Re-allow inputs.x.url = "/path/to/file" | Eelco Dolstra | |
2021-12-13 | Simplify | Eelco Dolstra | |
2021-12-13 | Merge branch 'arm32-personality' of https://github.com/cleverca22/nix | Eelco Dolstra | |
2021-12-13 | rl-2.5.md: Set date | Eelco Dolstra | |
2021-12-13 | Merge pull request #5770 from edolstra/gc-fixes | Eelco Dolstra | |
Fix macOS GC failures | |||
2021-12-13 | Respect /etc/hosts | Eelco Dolstra | |
https://hydra.nixos.org/build/161439329 | |||
2021-12-13 | Merge branch 'better-interpolation-error-location' of ↵ | Eelco Dolstra | |
https://github.com/greedy/nix | |||
2021-12-13 | nix run: Tweak docs | Eelco Dolstra | |
2021-12-13 | Merge branch 'pname-main-program' of https://github.com/figsoda/nix | Eelco Dolstra | |
2021-12-13 | More debug info | Eelco Dolstra | |
2021-12-13 | gc-non-blocking.sh: Don't hang indefinitely if the GC roots server crashes | Eelco Dolstra | |
2021-12-13 | Retry on ECONNREFUSED | Eelco Dolstra | |
https://hydra.nixos.org/build/161439235 | |||
2021-12-13 | Explicitly make GC roots client sockets blocking | Eelco Dolstra | |
On macOS / BSD, these sockets inherit the non-blocking flag of the server soocket, which is not what we want. https://github.com/dotnet/runtime/issues/25069 https://bugs.python.org/issue7995 https://hydra.nixos.org/build/161439304 | |||
2021-12-13 | Add a crude tracing mechansim for the build results | regnat | |
Add a `_NIX_TRACE_BUILT_OUTPUTS` environment variable that can be set to a filename in which the result of each build will be logged. This is intentionally crude and undocumented as it’s only meant to be a temporary thing to assess the usefulness of CA derivations. Any other use would need a cleaner re-implementation first. | |||
2021-12-13 | More properly track the status of CA builds | regnat | |
Make the build of unresolved derivations return the same status as the resolved one, except in the case of an `AlreadyValid` in which case it will return `ResolvesToAlreadyValid` to mean that the outputs of the unresolved derivation weren’t known, but the resolved one is. | |||
2021-12-13 | Move rl-next.md to rl-2.5.md | Eelco Dolstra | |
2021-12-13 | Add release notes entry for #5149 | Eelco Dolstra | |
2021-12-13 | Merge pull request #5750 from tomberek/patch-1 | Eelco Dolstra | |
Update bug_report.md | |||
2021-12-13 | Merge pull request #5761 from yorickvP/fix-5741 | Eelco Dolstra | |
extract_archive: fix "Hard-link target '...'" error | |||
2021-12-13 | Merge pull request #5763 from yorickvP/evalstate-root | Eelco Dolstra | |
EvalCommand::getEvalState: use gc tracable allocator for EvalState (fix segfault) | |||
2021-12-11 | EvalCommand::getEvalState: use gc tracable allocator for EvalState | Yorick van Pelt | |
2021-12-10 | Merge pull request #5760 from helsinki-systems/fix/doc-remote-builds | Eelco Dolstra | |
doc: Fix command for distributed builds | |||
2021-12-10 | extract_archive: fix "Hard-link target '...'" error | Yorick van Pelt | |
Fixes #5741 | |||
2021-12-10 | extract_archive: use copy_pathname instead of set_pathname. | Yorick van Pelt | |
Libarchive documentation mentions that archive_entry_set_pathname expects us to keep the passed string alive, which we don't. |