- May 08, 2020
-
-
Eelco Dolstra authored
-
Eelco Dolstra authored
-
Eelco Dolstra authored
-
- May 07, 2020
-
-
Tobias Pflug authored
-
Tobias Pflug authored
The function isn't being used anywhere so it seems safe to remove
-
Tobias Pflug authored
No need to use `c_str()` in combination with `ASSERT_STREQ`. It's possible to just use ASSERT_EQ on std::string
-
- May 06, 2020
-
-
Tobias Pflug authored
This is a proof on concept to evaluate writing unit tests for Nix using google test (https://github.com/google/googletest). In order to execute tests: $ make unit-tests $ ./unit-tests The Makefile rules for `unit-tests` is a complete hack.
-
Eelco Dolstra authored
builtins.readFile: do not truncate content
-
Eelco Dolstra authored
Improve help-message for nix-repl
-
Eelco Dolstra authored
Use fragment size for autoGC capacity calculation
-
Eelco Dolstra authored
This reverts commit 3ebfbecd, reversing changes made to c089c52d. https://github.com/NixOS/nix/pull/3558
-
- May 05, 2020
-
-
Eelco Dolstra authored
-
Eelco Dolstra authored
-
- May 04, 2020
-
-
Jude Taylor authored
-
Eelco Dolstra authored
-
Eelco Dolstra authored
-
Eelco Dolstra authored
remote-store: don't log raw stderr by default
-
- May 02, 2020
-
-
Daiderd Jordan authored
The raw stderr output isn't logged anymore so the build logs need to be printed by the default logger in order for the old commands like nix-build to still show build output.
-
Daiderd Jordan authored
For remote stores the log messages are already forwarded as structured STDERR_RESULT messages so the old format is duplicate information. But still included with -vvv since it could be useful for debugging problems. $ nix build -L /nix/store/nl71b2niws857ffiaggyrkjwgx9jjzc0-foo.drv --store ssh-ng://localhost Hello World! foo> Hello World! [1/0/1 built] building foo Fixes #3556
-
- May 01, 2020
-
-
Maximilian Bosch authored
* Remove obsolete `printHelp` function * Add an example to demonstrate how to list all available commands within the REPL
-
Eelco Dolstra authored
-
Matthew Kenigsberg authored
(cherry picked from commit f459ca54)
-
Matthew Kenigsberg authored
(cherry picked from commit 5d8504b9)
-
Eelco Dolstra authored
(cherry picked from commit bc5d4843)
-
Eelco Dolstra authored
-
Domen Kožar authored
Revamp README.md
-
Domen Kožar authored
-
Domen Kožar authored
Co-authored-by:
worldofpeace <worldofpeace@protonmail.ch>
-
Domen Kožar authored
Co-authored-by:
worldofpeace <worldofpeace@protonmail.ch>
-
- Apr 30, 2020
-
-
Tobias Pflug authored
-
Domen Kožar authored
-
Domen Kožar authored
-
Eelco Dolstra authored
This avoids inheriting the caller's shellHook, which can happen when running a dev-shell inside a dev-shell.
-
Eelco Dolstra authored
Tested against https://github.com/NixOS/nixpkgs/pull/72074. Fixes #3540.
-
Eelco Dolstra authored
-
Domen Kožar authored
Fix displaying error-position in `builtins.fetch{Tree,Tarball}`
-
- Apr 29, 2020
-
-
Maximilian Bosch authored
Without dereferencing this pointer, you'd get an error like this: ``` error: unsupported argument 'abc' to 'fetchTarball', at 0x13627e8 ```
-
Guillaume Bouchard authored
When used with `readFile`, we have a pretty good heuristic of the file size, so `reserve` this in the `string`. This will save some allocation / copy when the string is growing.
-
Guillaume Bouchard authored
Now it is always `drain` (see previous commit).
-
Eelco Dolstra authored
Only call grantpt on MacOS systems
-