Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-03-11 | Merge remote-tracking branch 'origin/master' into flakes | Eelco Dolstra | |
2020-03-11 | nixos.org/releases -> releases.nixos.org | Eelco Dolstra | |
2020-03-10 | Fix flake subdirectory handling | Eelco Dolstra | |
2020-03-10 | nix-store -q --graph: Fix edges | Eelco Dolstra | |
Fixes #3389. | |||
2020-03-10 | dotgraph.cc: Remove dead code | Eelco Dolstra | |
2020-03-10 | nix-perl: Fix segfault in queryPathInfo) | Eelco Dolstra | |
2020-03-09 | Move calling flakes into a Nix helper function (call-flake.nix) | Eelco Dolstra | |
2020-03-09 | Add 'flake' attribute to lock files to denote non-flakes | Eelco Dolstra | |
2020-03-04 | Merge remote-tracking branch 'origin/master' into flakes | Eelco Dolstra | |
2020-03-04 | nix-build: Fix !<output> handling | Eelco Dolstra | |
This was broken by 22a754c091f765061f59bef5ce091268493bb138. https://hydra.nixos.org/eval/1573669 | |||
2020-03-04 | Merge branch 'emacs_lambda_indentation' of https://github.com/tbsmoest/nix-1 | Eelco Dolstra | |
2020-03-04 | Optimise Derivation::unparse() | Eelco Dolstra | |
In nix-instantiate --dry-run '<nixpkgs/nixos/release-combined.nix>' -A nixos.tests.simple.x86_64-linux this reduces time spent in unparse() from 9.15% to 4.31%. The main culprit was appending characters one at a time to the destination string. Even though the string has enough capacity, push_back() still needs to check this on every call. | |||
2020-03-04 | builtins.cache: Cache regular expressions | Eelco Dolstra | |
The evaluator was spending about 1% of its time compiling a small number of regexes over and over again. | |||
2020-03-04 | Add test for foldl' | Eelco Dolstra | |
2020-02-28 | Fix GC failures on bad store path names | Eelco Dolstra | |
It failed on names like '/nix/store/9ip48nkc9rfy0a4yaw98lp6gipqlib1a-'. | |||
2020-02-27 | Merge remote-tracking branch 'origin/master' into flakes | Eelco Dolstra | |
2020-02-27 | nix dev-shell: Add --command option | Eelco Dolstra | |
Note: like 'nix run', and unlike 'nix-shell', this takes an argv vector rather than a shell command. So nix dev-shell -c 'echo $PATH' doesn't work. Instead you need to do nix dev-shell -c bash -c 'echo $PATH' | |||
2020-02-25 | Add backward compatibility default.nix / shell.nix | Eelco Dolstra | |
This uses https://github.com/edolstra/flake-compat which is a bit more general than #3366. | |||
2020-02-20 | Fix nlohmann::json exception | Eelco Dolstra | |
2020-02-20 | Restore subdir -> dir | Eelco Dolstra | |
Got this mixed up somewhere. | |||
2020-02-20 | Restore subdir support in registries | Eelco Dolstra | |
Hacky... | |||
2020-02-20 | fetchTree: Use a feature flag | Eelco Dolstra | |
2020-02-20 | .dir-locals.el: Set additional lambda indentation to zero | Tobias Möst | |
2020-02-19 | Merge pull request #3325 from xzfc/clean-tmpdir | Eelco Dolstra | |
nix-shell: clean up the tmpDir and escape variables | |||
2020-02-19 | nix eval-hydra-jobs: Remove | Eelco Dolstra | |
On second thought, let's move this back to Hydra. | |||
2020-02-19 | nix-shell: clean up the tmpDir and escape variables | Albert Safin | |
The problem fixed: each nix-shell invocation creates a new temporary directory (`/tmp/nix-shell-*`) and never cleans up. And while I'm here, shellescape all variables inlined into the rcfile. See what might happen without escaping: $ export TZ="';echo pwned'" $ nix-shell -p hello --run hello pwned Hello, world! | |||
2020-02-19 | Merge pull request #3229 from Ma27/flakes-fetchgit-worktree-support | Eelco Dolstra | |
builtins.fetchGit: Fix build when fetching a git worktree | |||
2020-02-19 | builtins.fetchGit: Fix build when fetching a git worktree | Maximilian Bosch | |
Worktrees[1] are a feature of git which allow you to check out a ref in a different directory. While playing around with flakes I realized that git repositories in a worktree checkout break when trying to build a flake: ``` $ git worktree add ../nixpkgs-flakes nixpkgs-flakes $ cd ../nixpkgs-flakes $ nix build .#hello error: opening directory '/home/ma27/Projects/nixpkgs-flakes/.git/refs/heads': Not a directory ``` This issue has been fixed by determining with `git rev-parse --git-common-dir` where the actual `.git` directory is. Please note that this issue only exists on the `flakes` branch, fetching worktree checkouts with Nix master seems to work fine. [1] https://git-scm.com/docs/git-worktree | |||
2020-02-19 | Merge pull request #3332 from Calvin-L/patch-1 | Eelco Dolstra | |
Document that autoconf is a dependency | |||
2020-02-19 | Merge pull request #3357 from carlosdagos/pure-nix-shell-proxy-env | Eelco Dolstra | |
Pass through http proxy env vars in pure shell | |||
2020-02-19 | Merge remote-tracking branch 'origin/master' into flakes | Eelco Dolstra | |
2020-02-19 | Merge pull request #3328 from ↵ | Eelco Dolstra | |
Rovanion/nix-daemon-already-running-when-installing-fix installer: Handle edge case where the nix-daemon is already running on the system | |||
2020-02-19 | nix eval-hydra-jobs: Add feature | Eelco Dolstra | |
2020-02-19 | Use Nixpkgs 20.03 | Eelco Dolstra | |
2020-02-19 | Typo | Eelco Dolstra | |
2020-02-19 | Merge pull request #3359 from bhipple/doc/pure-eval | Eelco Dolstra | |
doc: mention how to turn on pure evaluation mode in manual | |||
2020-02-19 | Merge pull request #3353 from tbsmoest/priv_tobias_pr_set_deathsig-1.4 | Eelco Dolstra | |
Fix PR_SET_PDEATHSIG results in Broken pipe (#2395) | |||
2020-02-19 | Add dev output | Eelco Dolstra | |
Necessary since we're now propagating boehm-gc. | |||
2020-02-19 | Fix nixpkgs.<attr> warning | Eelco Dolstra | |
2020-02-18 | Remove outdated shell.nix | Eelco Dolstra | |
Looks like this got accidentally revived after 204291f0598c43b10cf20a89b49fc63624d78c7c. | |||
2020-02-18 | ggRevert "Use Nixpkgs 20.03" | Eelco Dolstra | |
This reverts commit 5921ca89f9cc6247830e92a71f7db3f1fe0c193b. | |||
2020-02-18 | nix eval-hydra-jobs: Fix aggregate derivation name | Eelco Dolstra | |
2020-02-18 | nix eval-hydra-jobs: Check aggregate jobs in --dry-run mode | Eelco Dolstra | |
2020-02-18 | Build with large config Boehm GC | Eelco Dolstra | |
2020-02-18 | Enable debug symbols | Eelco Dolstra | |
2020-02-18 | LocalStore::checkDerivationOutputs(): Improve error message | Eelco Dolstra | |
2020-02-18 | Disable the progress bar if $TERM == dumb or unset | Eelco Dolstra | |
Fixes #3363. | |||
2020-02-18 | Disable the progress bar if $TERM == dumb or unset | Eelco Dolstra | |
Fixes #3363. | |||
2020-02-18 | Use Nixpkgs 20.03 | Eelco Dolstra | |
2020-02-18 | Fix URL parser | Eelco Dolstra | |
Fixes #3361. |