aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-11-29flakes: fix boolean and int nixConfig valuesYorick van Pelt
Some type confusion was causing ints to be pointers, and bools to be ints. Fixes #5621
2021-11-29Merge pull request #5683 from edolstra/nix-develop-cloexecEelco Dolstra
createTempFile(): Mark file as CLOEEXEC
2021-11-29createTempFile(): Mark file as CLOEEXECEelco Dolstra
Fixes #5674.
2021-11-29Merge pull request #5680 from andir/libexpr-dont-move-primop-argsEelco Dolstra
Don't move the arguments of the primOp
2021-11-29Merge pull request #5678 from t184256/document-libsodiumEelco Dolstra
Document libsodium, which is now mandatory, as a dependency.
2021-11-29Merge pull request #5679 from t184256/optional-libcpuidEelco Dolstra
Document libcpuid dependency and make it optional
2021-11-29Merge pull request #5667 from NixOS/5661-dont-complete-flakes-without-xp-featureEelco Dolstra
Don’t try to complete flakes is the feature isn’t enabled
2021-11-29Merge pull request #5668 from tomberek/r13y_coresEelco Dolstra
reproducibility: determinstic man page output for cores
2021-11-29Merge pull request #5677 from matklad/patch-2Eelco Dolstra
Fix typo
2021-11-28Don't move the arguments of the primOpAndreas Rammhold
Moving arguments of the primOp into the registration structure makes it impossible to initialize a second EvalState with the correct primOp registration. It will end up registering all those "RegisterPrimOp"'s with an arity of zero on all but the 2nd instance of the EvalState. Not moving the memory will add a tiny bit of memory overhead during the eval since we need a copy of all the argument lists of all the primOp's. The overhead shouldn't be too bad as it is static (based on the amonut of registered operations) and only occurs once during the interpreter startup.
2021-11-28Make libcpuid dependency optional with --disable-cpuidAlexander Sosedkin
2021-11-28Document libcpuid dependencyAlexander Sosedkin
2021-11-27Document libsodium, which is now mandatory, as a dependencyAlexander Sosedkin
2021-11-27Fix typoAleksey Kladov
2021-11-26Don’t try to complete flakes is the feature isn’t enabledregnat
Fix #5661
2021-11-26reproducibility: determinstic man page output for coresTom Bereknyei
2021-11-26Merge pull request #5665 from edolstra/repl-reset-terminalEelco Dolstra
nix repl: Reset the terminal on exceptional exits
2021-11-26nix repl: Reset the terminal on exceptional exitsEelco Dolstra
2021-11-26Merge pull request #5662 from NixOS/5259-nix-shell-with-ca-bashEelco Dolstra
Make `nix-shell` work when nixpkgs is content-addressed
2021-11-26Merge pull request #5664 from tweag/catch-exception-in-replEelco Dolstra
Catch flake-related exception type in REPL
2021-11-26Catch flake-related exception type in REPLAlex Shabalin
Closes https://github.com/NixOS/nix/issues/5656
2021-11-26Documentation: alternative `stdenv` for hackingPamplemousse
Signed-off-by: Pamplemousse <xav.maso@gmail.com>
2021-11-26Add a matrix of stdenvs to the flakeregnat
For a (currently hardcoded and limited) list of stdenvs, make `.#$nix-${stdenvName}` correspond to a Nix built with the corresponding stdenv. For example, `.#nix-${clang11Stdenv}` is Nix built with clang11. Likewise, `devShells.x86_64-linux.clang11StdenvPackages` is a development shell for Nix with clang11, that can be used with ```shell nix develop .#clang11StdenvPackages ``` Fix #4129 /cc @pamplemousse
2021-11-26Make `nix-shell` work when nixpkgs is content-addressedregnat
Fix #5259
2021-11-25Merge pull request #5384 from baloo/baloo/dns-timeoutEelco Dolstra
preloadNSS / dns timeout
2021-11-25Merge pull request #5603 from obsidiansystems/recursive-nix-system-featureEelco Dolstra
"recursive-nix" system feature only with experimental feature
2021-11-25Merge pull request #5648 from edolstra/list-iterEelco Dolstra
Support range-based for loop over list values
2021-11-25Update namesEelco Dolstra
2021-11-25Merge pull request #5654 from NixOS/pure-file-access-error-messageEelco Dolstra
Fix the error when accessing a forbidden path in pure eval
2021-11-25Support range-based for loop over list valuesEelco Dolstra
2021-11-25Merge pull request #5653 from edolstra/fix-flake-checksEelco Dolstra
flake.nix: Only have checks.*.dockerImage on supported systems
2021-11-25Fix the error when accessing a forbidden path in pure evalregnat
If we’re in pure eval mode, then tell that in the error message rather than (wrongly) speaking about restricted mode. Fix https://github.com/NixOS/nix/issues/5611
2021-11-25flake.nix: Only have checks.*.dockerImage on supported systemsEelco Dolstra
2021-11-25Merge pull request #5644 from tweag/fix-interrupted-data-raceEelco Dolstra
Fix a minor data race with _isInterrupted
2021-11-24Merge pull request #5631 from Infinisil/list-compareEelco Dolstra
Make lists be comparable
2021-11-24Fix a minor data race with _isInterruptedAlex Shabalin
2021-11-24nix flake check: Fix markdownEelco Dolstra
2021-11-24Make lists be comparableSilvan Mosberger
Makes lists comparable using lexicographic comparison. Increments builtins.langVersion in order for this change to be detectable
2021-11-24Merge pull request #5636 from tweag/fix-use-after-freeEelco Dolstra
Fix use after free in content-address.cc
2021-11-24Merge pull request #5632 from NixOS/downloadable-docker-imageEelco Dolstra
Make docker image downloadable in Hydra UI
2021-11-24Merge remote-tracking branch 'origin/master' into downloadable-docker-imageRok Garbas
2021-11-24Add dockerImage to the checksRok Garbas
2021-11-24Don't copy, to reduce store sizeRok Garbas
2021-11-23"recursive-nix" system feature only with experimental featureJohn Ericson
2021-11-23Fix heap use after free in progress-bar.ccFarid Zakaria
Fix some heap-use-after-free in progress-bar.cc These are somewhat tricky failures here due to temporary variable creation and string_view
2021-11-23Fix use after free in content-address.ccAlex Shabalin
Inspired by https://github.com/NixOS/nix/pull/5599
2021-11-23Merge pull request #5634 from px-ben/fix-perl-bindings-store-dirEelco Dolstra
Add missing Nix::Store import to fix nix-serve StoreDir.
2021-11-23Add missing Nix::Store import to fix nix-serve StoreDir.Ben Radford
2021-11-23Make docker image downloadable in Hydra UIRok Garbas
2021-11-23Merge pull request #5628 from matthewbauer/rosetta2-new-pathEelco Dolstra
Set new rosetta 2 path in sandbox