Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-05-15 | Don’t set NIX_REMOTE=daemon in daemon profile | Matthew Bauer | 1 | -6/+0 | |
This is now autodetected. There is no need to put it in the profile. | |||||
2019-05-15 | Sync NIX_PROFILES between single-user and multi-user modes | Matthew Bauer | 1 | -2/+2 | |
When we are in single user mode, we still want to have access to profiles. This way things in Nixpkgs that rely on them getting set accurately are done in both cases. The point where I hit this is with using aspell which looks in NIX_PROFILES: https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/libraries/aspell/default.nix Before this patch, NIX_PROFILES was never set in single user mode! This corrects that. | |||||
2019-05-15 | Merge pull request #2810 from NixOS/print-build-logs | Eelco Dolstra | 4 | -13/+39 | |
nix: Add --print-build-logs flag | |||||
2019-05-15 | nix: Add --print-build-logs flag | Eelco Dolstra | 4 | -13/+39 | |
This causes 'nix' to print build log output to stderr rather than showing the last log line in the progress bar. Log lines are prefixed by the name of the derivation (minus the version string), e.g. binutils> make[1]: Leaving directory '/build/binutils-2.31.1' binutils-wrapper> unpacking sources binutils-wrapper> patching sources ... binutils-wrapper> Using dynamic linker: '/nix/store/kr51dlsj9v5cr4n8700jliyz8v5b2q7q-bootstrap-stage0-glibc/lib/ld-linux-x86-64.so.2' bootstrap-stage2-gcc-wrapper> unpacking sources ... linux-headers> unpacking sources linux-headers> unpacking source archive /nix/store/8javli69jhj3bkql2c35gsj5vl91p382-linux-4.19.16.tar.xz | |||||
2019-05-15 | nix-profile: Add all channels to $NIX_PATH | Eelco Dolstra | 1 | -4/+3 | |
Fixes #2709. | |||||
2019-05-15 | Fix shellcheck error | Eelco Dolstra | 1 | -1/+1 | |
https://hydra.nixos.org/build/93359951 | |||||
2019-05-13 | Merge pull request #2802 from LnL7/fix-needs-hashrewrite | Eelco Dolstra | 2 | -12/+19 | |
build: move needsHashRewrite initialization to startBuilder | |||||
2019-05-12 | Merge pull request #2798 from grahamc/diff-hook | Eelco Dolstra | 6 | -17/+338 | |
build: run diff-hook under --check and document diff-hook | |||||
2019-05-12 | runProgram: Uncomment chdir support | Graham Christensen | 1 | -2/+2 | |
2019-05-12 | build: make needsHashRewrite a method | Daiderd Jordan | 1 | -12/+16 | |
2019-05-12 | handleDiffHook: stop passing allowVfork | Graham Christensen | 1 | -3/+1 | |
2019-05-12 | Clarify where output from the diff hook goes. | Graham Christensen | 1 | -4/+5 | |
2019-05-12 | runProgram: support gid, uid, chdir | Graham Christensen | 3 | -24/+32 | |
2019-05-12 | chdir, setgroups | Graham Christensen | 1 | -0/+4 | |
2019-05-12 | diff hook: execute as the build user, and pass the temp dir | Graham Christensen | 5 | -28/+51 | |
2019-05-12 | build: run diff-hook under --check and document diff-hook | Graham Christensen | 4 | -16/+303 | |
2019-05-12 | build: add test for sandboxed --check | Daiderd Jordan | 1 | -0/+3 | |
2019-05-12 | build: move needsHashRewrite initialization to startBuilder | Daiderd Jordan | 1 | -7/+7 | |
The value of useChroot is not set yet in the constructor, resulting in hash rewriting being enabled in certain cases where it should not be. Fixes #2801 | |||||
2019-05-08 | nix-shell: Don't absolutize '-p' expressions | Eelco Dolstra | 1 | -5/+7 | |
This prevents spurious syscalls like 25011 lstat("/home/eelco/with import <nixpkgs> { }; (pkgs.runCommandCC or pkgs.runCommand) \"shell\" { buildInputs = [ (hello) ]; } \"\"", 0x7ffe9c67f580) = -1 ENOENT (No such file or directory) | |||||
2019-05-08 | Merge pull request #2594 from LnL7/darwin-10.12.6 | Graham Christensen | 1 | -3/+5 | |
installer: update macOS version check to 10.12.2 | |||||
2019-05-08 | Merge pull request #2765 from nh2/manual-nixpkgs-word | Eelco Dolstra | 1 | -3/+3 | |
manual: "Nix Package collection" -> "Nixpkgs package collection". | |||||
2019-05-08 | Merge branch 'repl/ctrlc' of https://github.com/xbreak/nix | Eelco Dolstra | 1 | -0/+40 | |
2019-05-08 | Merge pull request #2790 from samueldr/fix/minor-comment-NIX_ROOT_FINDER | Eelco Dolstra | 1 | -4/+3 | |
findRootsNoTemp: fixes comment about findRuntimeRoots | |||||
2019-05-08 | fix hashfile test that wasn't failing due to eval laziness | Will Dietz | 1 | -1/+1 | |
See: https://github.com/NixOS/nix/commit/7becb1bf1c2ec1544a5374580a97b36273506baf#r33450554 | |||||
2019-05-07 | Merge pull request #2792 from JohnAZoidberg/builtins-hash-file | Eelco Dolstra | 9 | -1/+39 | |
Add builtins.hashFile | |||||
2019-05-03 | Add builtins.hashFile | Daniel Schaefer | 9 | -1/+39 | |
For text files it is possible to do it like so: `builtins.hashString "sha256" (builtins.readFile /tmp/a)` but that doesn't work for binary files. With builtins.hashFile any kind of file can be conveniently hashed. | |||||
2019-05-03 | Fix "Bad system call" running i686-linux binaries on x86_64-linux | Eelco Dolstra | 3 | -4/+11 | |
To determine which seccomp filters to install, we were incorrectly using settings.thisSystem, which doesn't denote the actual system when --system is used. Fixes #2791. | |||||
2019-05-01 | Merge pull request #2679 from bjornfor/offline-install | Eelco Dolstra | 2 | -2/+13 | |
install script: don't abort when "nix-channel --update" fails | |||||
2019-04-30 | findRootsNoTemp: fixes comment about findRuntimeRoots | Samuel Dionne-Riel | 1 | -4/+3 | |
The NIX_ROOT_FINDER environment variable was removed in 3c46fe62b833a4e66845665edc99555022d3d98c when porting from perl to C. | |||||
2019-04-29 | Merge pull request #2750 from nh2/max-jobs-0-docs | Domen Kožar | 2 | -2/+13 | |
docs: Mention `--max-jobs 0` to build remotely only | |||||
2019-04-24 | Merge pull request #2775 from LnL7/darwin-sandbox-hash-rewrite | Eelco Dolstra | 1 | -2/+18 | |
build: only skip hash rewriting for sandboxing on linux | |||||
2019-04-17 | build: only skip hash rewriting for sandboxing on linux | Daiderd Jordan | 1 | -2/+18 | |
The sandbox on darwin, and possibly other future platforms, doesn't have enough isolation to redirect outputs without hash rewriting. | |||||
2019-04-15 | Fix release script | Eelco Dolstra | 1 | -2/+2 | |
2019-04-14 | manual: "Nix Package collection" -> "Nixpkgs package collection". | Niklas Hambüchen | 1 | -3/+3 | |
Makes difference between Nix and Nixpkgs clearer to avoid some common confusion this sentence on IRC. Also disambiguate an "it" reference. | |||||
2019-04-11 | Add environment variable NIX_SHOW_SYMBOLS for dumping the symbol table | Eelco Dolstra | 2 | -0/+13 | |
2019-04-01 | primeCache(): Barf if builds are needed but not allowed | Eelco Dolstra | 1 | -0/+6 | |
Fixes #2753. | |||||
2019-04-01 | getMachines(): Cache result | Eelco Dolstra | 1 | -4/+5 | |
2019-04-01 | Use Nixpkgs 19.03 | Eelco Dolstra | 2 | -2/+2 | |
2019-03-31 | docs: Mention `--max-jobs 0` to build remotely only | Niklas Hambüchen | 2 | -2/+13 | |
2019-03-27 | Fix Bison 3.3 warning | Eelco Dolstra | 1 | -1/+1 | |
2019-03-27 | Update eval-okay-types.exp to match #1828 | Eelco Dolstra | 1 | -1/+1 | |
2019-03-25 | Merge pull request #2744 from veprbl/patch-8 | Graham Christensen | 1 | -2/+7 | |
manual: mention the "channel:" shorthand for NIX_PATH | |||||
2019-03-25 | manual: mention the "channel:" shorthand for NIX_PATH | Dmitry Kalinkin | 1 | -2/+7 | |
Bumped to 15.09 because older channels, when downloaded from nixos.org, require firefox to be accessed via `pkgs.firefox` | |||||
2019-03-25 | Merge pull request #1828 from zimbatm/isPath | Eelco Dolstra | 3 | -0/+17 | |
Add isPath primop | |||||
2019-03-25 | perl/configure.ac: fix for new version location too | Will Dietz | 1 | -1/+1 | |
2019-03-25 | configure.ac: update for new version file location | Will Dietz | 1 | -1/+1 | |
2019-03-25 | store-api.hh: add missing include for unordered_map | Will Dietz | 1 | -0/+1 | |
2019-03-25 | version -> .version, avoid conflict with C++20 <version> | Will Dietz | 2 | -1/+1 | |
2019-03-24 | Merge pull request #2693 from thoughtpolice/scripts/multi-user-sandbox | Domen Kožar | 1 | -1/+0 | |
scripts: remove default 'sandbox = false' from multi-user installer | |||||
2019-03-24 | Add isPath primop | zimbatm | 3 | -0/+17 | |
this is added for completeness' sake since all the other possible `builtins.typeOf` results have a corresponding `builtins.is<Type>` |