- Jul 28, 2020
-
-
Eelco Dolstra authored
Since there are some incompatible changes, it's better to bump the major version number.
-
- Jul 27, 2020
-
-
Eelco Dolstra authored
Hash always has a valid type
-
John Ericson authored
-
Eelco Dolstra authored
Only store hash in DerivationOutput for fixed output derivations
-
John Ericson authored
-
John Ericson authored
-
- Jul 26, 2020
-
-
Eelco Dolstra authored
Allow PRECOMPILE_HEADERS in cross-compilation
-
- Jul 25, 2020
-
-
Matthew Bauer authored
In cross, CXX will look like aarch64-unknown-linux-gnu-g++. We could run some command to check what kind of compiler it is, but for now we can just check if g++ is anywhere in the string. I couldn’t find any "ends with" for makefile, so it can be anywhere in CXX.
-
- Jul 24, 2020
-
-
Eelco Dolstra authored
Reported by Kane York.
-
- Jul 23, 2020
-
-
Eelco Dolstra authored
-
Eelco Dolstra authored
Get rid of `basicDerivation::findOutput`
-
John Ericson authored
It's a tiny function which is: - hardly worth abstrating over, and also only used once. - doesn't work once we get CA drvs I rewrote the one callsite to be forwards compatable with CA derivations, and also potentially more performant: instead of reading in the derivation it can ust consult the SQLite DB in the common case.
-
Eelco Dolstra authored
Save changes made by "nix registry pin" to user registry
-
Fabian Möller authored
-
Eelco Dolstra authored
Separate concerns in `scanForReferences` with TeeSink
-
- Jul 22, 2020
-
-
John Ericson authored
This also will make it easier to use a `HashModuloSink` instead for CA derivations.
-
Eelco Dolstra authored
README: Fix link to hacking guide
-
Josef Kemetmüller authored
The link was previously interpreted as if it were relative to the current file.
-
- Jul 21, 2020
-
-
Eelco Dolstra authored
Allow relative paths in --store option
-
Eelco Dolstra authored
Add response body to network errors
-
John Ericson authored
The was Eelco's prefered logic, and it looks good to me!
-
Eelco Dolstra authored
Update chunkSize to the suggested value
-
Carlo Nucera authored
This was a suggested course of action in a review in one of our earlier commits, https://github.com/NixOS/nix/pull/3801#discussion_r457557079
-
John Ericson authored
-
Eelco Dolstra authored
Constant space `addToStoreFromDump` and deduplicate code
-
Eelco Dolstra authored
README: improve development docs
-
Eelco Dolstra authored
Correct bug, thoroughly document addToStoreSlow
-
John Ericson authored
Merge branch 'fix-and-document-addToStoreSlow' of github.com:obsidiansystems/nix into from-dump-stream
-
Carlo Nucera authored
-
- Jul 20, 2020
-
-
Jörg Thalheim authored
Co-authored-by:
Eelco Dolstra <edolstra@gmail.com>
-
Carlo Nucera authored
Due to https://github.com/NixOS/nix/issues/3841 we don't know how print different messages for different verbosity levels.
-
John Ericson authored
-
Eelco Dolstra authored
Optimize `addToStoreSlow` and remove `TeeParseSink`
-
John Ericson authored
Co-authored-by:
Eelco Dolstra <edolstra@gmail.com>
-
Jörg Thalheim authored
-
- Jul 19, 2020
-
-
Eelco Dolstra authored
Add newline to profile sourcing line #3393
-
- Jul 18, 2020
-
-
Alex Kovar authored
-
Eelco Dolstra authored
fix make's impurity on /bin/sh
-
Eelco Dolstra authored
nix edit: call restoreSignals() before `execvp`-ing the $EDITOR
-
Jörg Thalheim authored
This is important when using tooling like BEAR to generate compilation database since the used glibc version needs to match for LD_PRELOAD to work. It might be also beneficial when building on systems other than NixOS with nix develop since /bin/sh might be not bash (which is what all nix devs use for testing). This fix is not perfect because Makefile.config.in itself is also build with make but strictly better than the status quo.
-