Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-09-14 | Merge pull request #5244 from edolstra/fix-mac-build | Eelco Dolstra | |
Fix macOS build | |||
2021-09-14 | Fix macOS build | Eelco Dolstra | |
2021-09-14 | Fix clang warning | Eelco Dolstra | |
2021-09-13 | RunOptions: Use designated initializers | Eelco Dolstra | |
Also get rid of _killStderr because it wasn't actually checked anywhere. | |||
2021-09-13 | Remove tabs | Eelco Dolstra | |
2021-09-13 | hashFile, hashString: realize context before calculation, and discard afterwards | kvtb | |
2021-09-13 | Merge pull request #5239 from NixOS/fix-recursive-nix | Eelco Dolstra | |
tests: Fix the recursive test with the daemon | |||
2021-09-13 | Fix markdown error | Eelco Dolstra | |
2021-09-13 | tests: Fix the recursive test with the daemon | regnat | |
Add the `recursive-nix` experimental-feature to the daemon, as the test will otherwise fail | |||
2021-09-13 | Use Bindings::{get,need} instead of find | Eelco Dolstra | |
2021-09-13 | renderMarkdownToTerminal(): Fix terminal width computation | Eelco Dolstra | |
2021-09-10 | Remove tabs | Eelco Dolstra | |
2021-09-10 | Make installables const | Eelco Dolstra | |
2021-09-09 | Manual: Link to 2.4 release notes | Eelco Dolstra | |
2021-09-09 | Manual: Depend on all *.md files | Eelco Dolstra | |
2021-09-09 | Merge pull request #5224 from baloo/baloo/5089/force-nss_dns-load | Eelco Dolstra | |
preloadNSS: fixup nss_dns load | |||
2021-09-08 | preloadNSS: load NSS before threads are started | Arthur Gautier | |
preloadNSS is not thread-safe, this commit moves it before we start the first thread. Signed-off-by: Arthur Gautier <baloo@superbaloo.net> | |||
2021-09-08 | Merge branch 'fix-3976' of https://github.com/mkenigs/nix | Eelco Dolstra | |
2021-09-08 | Merge pull request #5225 from ncfavier/patch-1 | Eelco Dolstra | |
Add missing include in util.cc | |||
2021-09-08 | Add missing include in util.cc | Naïm Favier | |
2021-09-08 | Merge pull request #5215 from ncfavier/patch-1 | Eelco Dolstra | |
Fix use-registries logic in builtins.getFlake | |||
2021-09-07 | Merge pull request #4922 from nrdxp/default-submodules | Shea Levy | |
libfetchers/git: fetch submodules by default | |||
2021-09-06 | preloadNSS: fixup nss_dns load | Arthur Gautier | |
Before this commit, the dns lookup in preloadNSS would still go through nscd. This did not have the effect of loading the nss_dns.so as expected (nss_dns.so being out of reach from within the sandbox). Should LOCALDOMAIN environment variable be defined, nss will completely avoid nscd and will do its dns resolution on its own. By temporarly setting LOCALDOMAIN variable before calling in NSS, we can force NSS to load the shared libraries as expected. Fixes #5089 Signed-off-by: Arthur Gautier <baloo@superbaloo.net> | |||
2021-09-05 | Fix use-registries logic in builtins.getFlake | Naïm Favier | |
2021-09-02 | Add FIXME | Eelco Dolstra | |
2021-09-02 | Don't use read-only mode for nix build --dry-run | Georges Dubus | |
In dry run mode, new derivations can't be create, so running the command on anything that has not been evaluated before results in an error message of the form `don't know how to build these paths (may be caused by read-only store access)`. For comparison, the classical `nix-build --dry-run` doesn't use read-only mode. Closes #1795 (cherry picked from commit 54525682df707742e58311c32e9c9cb18de1e31f) | |||
2021-09-02 | parseInstallables(): Parse store paths as store paths | Eelco Dolstra | |
If the store path contains a flake, this means that a command like "nix path-info /path" will show info about /path, not about the default output of the flake in /path. If you want the latter, you can explicitly ask for it by doing "nix path-info path:/path". Fixes #4568. | |||
2021-09-02 | Failing test case for flake in store | Stéphan Kochen | |
2021-09-02 | Merge pull request #5203 from NixOS/fix-invalid-lockfile-names | Eelco Dolstra | |
Don’t create lockfiles with an invalid path name | |||
2021-09-02 | Merge pull request #5204 from lucc/patch-1 | Eelco Dolstra | |
Docs: Fix syntax error in json example in man page | |||
2021-09-02 | Docs: Fix syntax error in json example in man page | Lucas Hoffmann | |
2021-09-02 | Don’t create lockfiles with an invalid path name | regnat | |
Store paths are only allowed to contain a limited subset of the alphabet, which doesn’t include `!`. So don’t create lockfiles that contain this `!` character as that would otherwise confuse (and break) the gc. Fix #5176 | |||
2021-09-02 | Merge pull request #5201 from abathur/fix_missing_install_test_cachix | Domen Kožar | |
fix CI for users with no install-tests cachix | |||
2021-09-02 | Merge pull request #5202 from abathur/sudo_diskutil2 | Domen Kožar | |
installer: fix addVolume perm issue for some users | |||
2021-09-01 | install: fix addVolume perm issue for some users | Travis A. Everett | |
As reported in #5198, volume creation can fail with a permission error for some macOS users (probably secondary user accounts?) Sudo appears to be sufficient to avoid this. While I'm here, I also updated the sudo invocation added in 079bde2ae to use the _sudo explanation wrapper. | |||
2021-09-01 | fix CI for users with no installer-test cachix | Travis A. Everett | |
Closes #5173 | |||
2021-09-01 | Style | Eelco Dolstra | |
2021-09-01 | Merge branch 'short-circuit-subst' of https://github.com/Kha/nix | Eelco Dolstra | |
2021-09-01 | Merge pull request #5066 from Radvendii/master | Eelco Dolstra | |
add antiquotations to paths | |||
2021-08-31 | fix parse of `/${foo}`. was `// + foo` | Taeer Bar-Yam | |
I don't think this changes the way any program would behave, but it's a cleaner internal representation. | |||
2021-08-31 | add documentation for path antiquotations | Taeer Bar-Yam | |
2021-08-31 | path antiquotations: canonizePath -> canonicalizePath | Taeer Bar-Yam | |
2021-08-31 | Merge pull request #5196 from hercules-ci/verbose-tests-fetchurl-for-darwin-eof | Eelco Dolstra | |
tests/fetchurl.sh: Be verbose to help debug darwin eof bug #2794 | |||
2021-08-31 | tests/fetchurl.sh: Be verbose to help debug darwin eof bug #2794 | Robert Hensing | |
2021-08-31 | Merge pull request #5071 from NixOS/dont-send-xp-features-to-the-daemon | Eelco Dolstra | |
Don’t send the experimental-features to the daemon | |||
2021-08-30 | TarArchive: Small refactoring | Eelco Dolstra | |
2021-08-30 | Don't segfault if archive_entry_pathname() returns null | Eelco Dolstra | |
Issues #4499. | |||
2021-08-30 | Merge pull request #5096 from AnatoleLucet/patch-1 | Eelco Dolstra | |
Remove curl deps in install script | |||
2021-08-30 | Merge pull request #5179 from matthewbauer/use-zshrc | Eelco Dolstra | |
Revert "Use /etc/zshenv instead of /etc/zshrc for profile" | |||
2021-08-30 | Merge pull request #5172 from matthewbauer/enableOwnership | Eelco Dolstra | |
Set enableOwnership in macOS install |