Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-06-07 | set verbosity levels | Ben Burdette | |
2020-06-06 | Remove error-demo/error-demo.cc | Tobias Pflug | |
The logging.hh superseeds the demo | |||
2020-06-06 | Add tests for logging.hh | Tobias Pflug | |
2020-06-04 | add some comments | Ben Burdette | |
2020-06-03 | update error grep | Ben Burdette | |
2020-06-03 | Merge remote-tracking branch 'upstream/master' into errors-phase-2 | Ben Burdette | |
2020-06-03 | newline-as-prefix; no final newline in output. | Ben Burdette | |
2020-06-03 | Missing `#include <cassert>` in `lru-cache.hh` (#3654) | John Ericson | |
This was a latent bug that just appeared because of the tests that were added. Remember to wait for CI! :) | |||
2020-06-02 | remove extra space in SysErrors | Ben Burdette | |
2020-06-02 | elide the 'ErrorInfo' in logError and logWarning calls | Ben Burdette | |
2020-06-02 | Merge pull request #3639 from obsidiansystems/do-fixme-store-removes | Eelco Dolstra | |
Remove `addToStore` variant as requested by `FIXME` | |||
2020-06-02 | Merge branch 'lru-tests' of https://github.com/gilligan/nix | Eelco Dolstra | |
2020-06-02 | src/libutil/tests/lru-cache.cc: Check erase() | Eelco Dolstra | |
Co-authored-by: James Lee <jbit@jbit.net> | |||
2020-06-02 | Merge pull request #3642 from knl/improve-ref-validity-checking-in-fetchgit | Eelco Dolstra | |
Improve ref validity checking in fetchgit | |||
2020-05-31 | Add tests for lru-cache.hh | Tobias Pflug | |
2020-05-30 | Ensure we restrict refspec interpretation while fetching | Nikola Knezevic | |
As `git fetch` may chose to interpret refspec to it's liking, ensure that we only pass refs that begin with `refs/` as is, otherwise, prepend them with `refs/heads`. Otherwise, branches named `heads/foo` (I know it's bad, but it's allowed), would be fetched as `foo`, instead of `heads/foo`. | |||
2020-05-30 | Improve ref validity checking in fetchGit | Nikola Knezevic | |
The previous regex was too strict and did not match what git was allowing. It could lead to `fetchGit` not accepting valid branch names, even though they exist in a repository (for example, branch names containing `/`, which are pretty standard, like `release/1.0` branches). The new regex defines what a branch name should **NOT** contain. It takes the definitions from `refs.c` in https://github.com/git/git and `git help check-ref-format` pages. This change also introduces a test for ref name validity checking, which compares the result from Nix with the result of `git check-ref-format --branch`. | |||
2020-05-29 | Remove addToStore variant as requested by `FIXME` | John Ericson | |
The idea is it's always more flexible to consumer a `Source` than a plain string, and it might even reduce memory consumption. I also looked at `addToStoreFromDump` with its `// FIXME: remove?`, but the worked needed for that is far more up for interpretation, so I punted for now. | |||
2020-05-29 | Merge remote-tracking branch 'upstream/master' into errors-phase-2 | Ben Burdette | |
2020-05-28 | Merge pull request #3631 from andir/libutil-config-tests | Eelco Dolstra | |
Add unit tests for config.cc | |||
2020-05-28 | Merge pull request #3455 from Ericson2314/enum-FileIngestionMethod | Eelco Dolstra | |
Replace some `bool recursive` with a new `FileIngestionMethod` enum | |||
2020-05-28 | Merge pull request #3632 from LnL7/darwin-xz | Eelco Dolstra | |
installer: don't require xz on darwin | |||
2020-05-27 | Use `FileIngestionMethod` for `nix hash` | John Ericson | |
There was an enum there that matched in perfectly. | |||
2020-05-27 | installer: don't require xz on darwin | Daiderd Jordan | |
On macOS the system tar has builtin support for lzma while xz isn't available as a separate binary. There's no builtin package manager there available either so having to install lzma (without nix) would be rather painful. | |||
2020-05-27 | Rename some variables named “recursive” to “method” | Matthew Bauer | |
This is much less confusing since recursive is no longer a boolean. | |||
2020-05-27 | Don’t use FileIngestionMethod for StorePathsCommand | Matthew Bauer | |
This is a different recursive than used in makeFixedOutputPath. | |||
2020-05-27 | config.hh: Add documentation | Andreas Rammhold | |
Provides some general overview on the mechanics of Config/Setting and comments for the public methods of Config. | |||
2020-05-27 | tests/config.cc: add tests for Config::applyConfig | Andreas Rammhold | |
2020-05-27 | config.cc: extract parts of applyConfigFile into applyConfig | Andreas Rammhold | |
This moves the actual parsing of configuration contents into applyConfig which applyConfigFile is then going to call. By changing this we can now test the configuration file parsing without actually create a file on disk. | |||
2020-05-27 | Add unit tests for config.cc | Andreas Rammhold | |
2020-05-27 | Merge pull request #3608 from surajbarkale/patch-1 | Eelco Dolstra | |
Use /etc/zshenv instead of /etc/zshrc for profile | |||
2020-05-27 | Merge pull request #3621 from gilligan/add-json-tests | Eelco Dolstra | |
Add unit tests for "json.hh" | |||
2020-05-27 | Merge pull request #3625 from gilligan/xml-writer-tests | Eelco Dolstra | |
Add unit tests for xml-writer | |||
2020-05-27 | Merge pull request #3620 from gilligan/hash-tests | Eelco Dolstra | |
Add unit tests for hashing functions | |||
2020-05-26 | Change remaining bools with FileIngestionMethod | Carlo Nucera | |
2020-05-26 | Merge remote-tracking branch 'origin/master' into enum-FileIngestionMethod | Carlo Nucera | |
2020-05-26 | installer: fix unused variable | Domen Kožar | |
2020-05-26 | Fix installer script bugs | Domen Kožar | |
- --no-channel-add didn't have effect on multi-user installation - some new flags didn't work at all - document all installer flags | |||
2020-05-25 | Add unit tests for xml-writer | Tobias Pflug | |
2020-05-25 | Merge pull request #3375 from domenkozar/multi-user-count | Domen Kožar | |
install-multi-user: allow overriding user count | |||
2020-05-25 | Merge pull request #3623 from domenkozar/installer-pass-nix-conf | Domen Kožar | |
Allow passing extra nix.conf to installer | |||
2020-05-25 | Allow passing extra nix.conf to installer | Domen Kožar | |
2020-05-25 | install-multi-user: allow overriding user count | Domen Kožar | |
2020-05-25 | Add unit tests for "json.hh" | Tobias Pflug | |
2020-05-25 | Add unit tests for hashing functions | Tobias Pflug | |
2020-05-23 | Merge pull request #3611 from nomeata/joachim/nix-env-man | Domen Kožar | |
Manpages: Do not refer to nixpkgs-channels | |||
2020-05-23 | Merge pull request #3610 from LnL7/hydra-build-products | Domen Kožar | |
fix hydra build products | |||
2020-05-23 | Manpages: Do not refer to nixpkgs-channels | Joachim Breitner | |
Unless I am misinformed, using the `nixpkgs` repository directly is now preferred? | |||
2020-05-23 | fix hydra build products | Daiderd Jordan | |
Since the binary tarball was replaced none of the hydra builds include the manual. The dist phase isn't enabled by default the manual build products where not written. | |||
2020-05-23 | Merge pull request #3212 from LnL7/darwin-10.15-install | Domen Kožar | |
install: configure and bootstrap synthetic.conf on darwin |