Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-02-02 | Flake follows: resolve all follows to absolute | Alexander Bantyev | |
It's not possible in general to know in computeLocks, relative to which path the follows was intended to be. So, we always resolve follows to their absolute states when we encounter them (which can either be in parseFlakeInput or computeLocks' fake input population). Fixes https://github.com/NixOS/nix/issues/6013 Fixes https://github.com/NixOS/nix/issues/5609 Fixes https://github.com/NixOS/nix/issues/5697 (again) | |||
2022-02-01 | Require lowdown 0.9.0 | Eelco Dolstra | |
Fixes #6021. | |||
2022-01-31 | Merge pull request #6022 from thkoch2001/fix-lowdown_libs | Eelco Dolstra | |
use LOWDOWN_LIBS variable | |||
2022-01-31 | Merge pull request #5990 from lincolnauster/flakes-nixconfig-docs | Eelco Dolstra | |
flakes: document nixConfig option | |||
2022-01-30 | use LOWDOWN_LIBS variable | Thomas Koch | |
fixes: #5931 | |||
2022-01-30 | Merge pull request #6018 from dtzWill/fix/issue-6017 | Eelco Dolstra | |
canonPath: fix missing slash when resolving links | |||
2022-01-30 | Merge pull request #6019 from thkoch2001/fix_spelling_mistakes | Eelco Dolstra | |
fix spelling mistakes reported by Debian's lintian tool | |||
2022-01-30 | fix spelling mistakes reported by Debian's lintian tool | Thomas Koch | |
2022-01-29 | canonPath: fix missing slash when resolving links | Will Dietz | |
Fixes #6017 | |||
2022-01-28 | Remove a repeated std::move in a for loop | Eelco Dolstra | |
2022-01-27 | Merge pull request #5951 from abathur/install_add_getconf_fallback | Domen Kožar | |
install-darwin: dodge bash 3.2 command bug | |||
2022-01-27 | Merge pull request #6001 from NixOS/fix-nix-path | Eelco Dolstra | |
Don’t require `NIX_PATH` entries to be valid paths | |||
2022-01-27 | Merge pull request #6000 from NixOS/use-flakes-in-ci | Eelco Dolstra | |
Use the `nix` command (and flakes) in the CI | |||
2022-01-27 | Don’t require `NIX_PATH` entries to be valid paths | regnat | |
It’s totally valid to have entries in `NIX_PATH` that aren’t valid paths (they can even be arbitrary urls or `channel:<channel-name>`). Fix #5998 and #5980 | |||
2022-01-26 | Use the `nix` command (and flakes) in the CI | regnat | |
Apart from a slight simplification and a bit of dogfooding, this also make the cache behavior more predictable. For example `nix build .` and `nix build nix/$(git rev-parse HEAD)` will yield the exact same path, while their “intuitive” non-flake equivalents (`nix-build` and `nix-build https://github.com/nixos/nix/archives/$(git rev-parse HEAD).tar.gz`) don’t. This was a pain for example in https://github.com/NixOS/nix/pull/5059 Also, the `bar-with-logs` log format is imho nicer (even in an non-interactive context) because prefixing each log line with the name of the derivation that produced it makes it much easier to follow what’s going on. | |||
2022-01-26 | Merge pull request #5997 from NixOS/test-nix-store-ping | Eelco Dolstra | |
Fix the `store ping` test | |||
2022-01-26 | Merge pull request #5996 from edolstra/remove-nlohmann | Eelco Dolstra | |
Stop vendoring nlohmann_json | |||
2022-01-26 | Fix the `store ping` test | regnat | |
2022-01-26 | Stop vendoring nlohmann_json | Eelco Dolstra | |
2022-01-26 | Merge pull request #5995 from NixOS/test-nix-store-ping | Eelco Dolstra | |
Add some tests for `nix store ping` | |||
2022-01-26 | Add some tests for `nix store ping` | regnat | |
Always good to have :) | |||
2022-01-26 | Merge pull request #5991 from edolstra/remote-nix-version | Eelco Dolstra | |
nix store ping: Report Nix daemon version | |||
2022-01-25 | fix typo | lincoln auster | |
Co-authored-by: Cole Helbling <cole.e.helbling@outlook.com> | |||
2022-01-25 | nix store ping: Report Nix daemon version | Eelco Dolstra | |
Fixes #5952. | |||
2022-01-25 | flakes: document nixConfig option | lincoln auster [they/them] | |
Fixes #5988. | |||
2022-01-25 | Merge pull request #5987 from edolstra/rust-cleanup | Eelco Dolstra | |
Remove unused Rust stuff | |||
2022-01-25 | Merge pull request #5922 from fzakaria/fzakaria/json-ignore-assertion | Eelco Dolstra | |
Add try/catch to queryJSON for assertion and errors | |||
2022-01-25 | Merge pull request #5966 from SuperSandro2000/patch-2 | Eelco Dolstra | |
Remove url literal | |||
2022-01-25 | Remove unused Rust stuff | Eelco Dolstra | |
In particular we were still compiling rust-ffi.cc even though we're not using it. | |||
2022-01-25 | Merge pull request #5984 from NixOS/5982-correctly-parse-__curPosFoo | Eelco Dolstra | |
Fix parsing of variable names that are a suffix of '__curPos' | |||
2022-01-25 | Fix parsing of variable names that are a suffix of '__curPos' | regnat | |
Follow-up from #5969 Fix #5982 | |||
2022-01-24 | Do not suppress errors in nix-env from feedback by Eelco | Farid Zakaria | |
2022-01-25 | flake.nix: Fix indentation | Eelco Dolstra | |
2022-01-25 | Bump version | Eelco Dolstra | |
2022-01-25 | Merge pull request #5978 from edolstra/nixpkgs-regression-tests | Eelco Dolstra | |
Add regression / performance tests against a fixed revision of Nixpkgs | |||
2022-01-25 | Move rl-next.md to rl-2.5.md | Eelco Dolstra | |
2022-01-25 | Add regression / performance tests against a fixed revision of Nixpkgs | Eelco Dolstra | |
2022-01-25 | Merge pull request #5976 from edolstra/read-invalid-paths | Eelco Dolstra | |
Allow builtins.{readFile,path} on invalid paths | |||
2022-01-24 | Allow builtins.{readFile,path} on invalid paths | Eelco Dolstra | |
Stop-gap measure to fix #5975. | |||
2022-01-24 | Merge pull request #5969 from edolstra/curpos-fix | Eelco Dolstra | |
Fix parsing of variable names that are a prefix of '__curPos' | |||
2022-01-24 | Fix parsing of variable names that are a prefix of '__curPos' | Eelco Dolstra | |
Fixes $ nix-instantiate --parse -E 'x: with x; _' (x: (with x; __curPos)) | |||
2022-01-24 | ExprConcatStrings::show(): Print values instead of pointers | Eelco Dolstra | |
2022-01-24 | Add a test for nix-assertion failures in nix-env | Eelco Dolstra | |
2022-01-24 | hiliteMatches(): Style fixes, pass more stuff by reference | Eelco Dolstra | |
2022-01-24 | Remove url literals | Sandro | |
2022-01-24 | Merge pull request #5945 from afishhh/master | Théophane Hufschmitt | |
Make `nix search` highlight all regexes and matches | |||
2022-01-24 | Merge pull request #5960 from zombiezen/patch-1 | Eelco Dolstra | |
Correct `NIX_BUILD_PATH` default description | |||
2022-01-24 | Merge pull request #5963 from FlorianFranzen/test-flake-git | Eelco Dolstra | |
tests: skip flake search test if no git is present | |||
2022-01-24 | Tweak release notes | Eelco Dolstra | |
2022-01-24 | Merge pull request #5964 from pennae/fix-bulk-alloc | Eelco Dolstra | |
allocate a GC root value for the Value cache pointer |