Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-11-20 | Remove #include | Eelco Dolstra | |
2019-11-20 | Move #include | Eelco Dolstra | |
2019-11-14 | Fix attr path to nixpkgs flake in flake template | Maximilian Bosch | |
This doesn't work anymore since `packages` was removed from the `nixpkgs`-fork with flake support[1], now it's only possible to refer to pkgs via `legacyPackages`. [1] https://github.com/edolstra/nixpkgs/commit/49c9b71e4ca98722cecd64ce8d53c1a4b9c46b64 | |||
2019-11-12 | nix dev-shell: Improve bash output parsing | Eelco Dolstra | |
Fixes handling of '=' in unquoted strings and escaped characters in $'...' strings. | |||
2019-11-08 | Merge remote-tracking branch 'origin/master' into flakes | Eelco Dolstra | |
2019-11-08 | Move editorFor srom libutil to nix | Eelco Dolstra | |
libutil should not depend on libexpr. | |||
2019-11-07 | Use upstream nlohmann_json | Eelco Dolstra | |
2019-11-07 | Merge remote-tracking branch 'origin/master' into flakes | Eelco Dolstra | |
2019-11-07 | Remove #include | Eelco Dolstra | |
2019-11-06 | Cleanup | Eelco Dolstra | |
2019-11-06 | Use more stable registry URL | Eelco Dolstra | |
2019-11-06 | Use revcount/last-modified for computing the flake fingerprint | Eelco Dolstra | |
The store path is not enough. For example, when we build a dirty tree, commit, and build the clean tree, a re-evaluation is necessary because the flake may depend on the lastModified or revCount attributes. | |||
2019-11-06 | Merge remote-tracking branch 'origin/master' into flakes | Eelco Dolstra | |
2019-11-05 | Merge branch 'fix/nix-doctor-output' of https://github.com/bhipple/nix | Eelco Dolstra | |
2019-11-05 | Merge branch 'nix-repl-e' of https://github.com/zimbatm/nix | Eelco Dolstra | |
2019-11-05 | Merge pull request #3190 from mkenigs/examples | Eelco Dolstra | |
change deprecated attribute syntax in run examples | |||
2019-11-05 | Merge pull request #3173 from mkenigs/typo | Eelco Dolstra | |
fix typo | |||
2019-11-05 | Don't use SOCK_CLOEXEC on macOS | Eelco Dolstra | |
https://hydra.nixos.org/build/105428308 | |||
2019-11-04 | Merge remote-tracking branch 'origin/master' into flakes | Eelco Dolstra | |
2019-11-04 | Merge pull request #3202 from kraem/master | Eelco Dolstra | |
Update nix eval --help msg to not include deprecated command | |||
2019-11-03 | Fix progress bar when nix-prefetch-url is piped. | Harald van Dijk | |
The intent of the code was that if the window size cannot be determined, it would be treated as having the maximum possible size. Because of a missing assignment, it was actually treated as having a width of 0. The reason the width could not be determined was because it was obtained from stdout, not stderr, even though the printing was done to stderr. This commit addresses both issues. | |||
2019-11-03 | Update nix eval --help msg to not include deprecated command | kraem | |
2019-11-01 | include netinet/in.h in src/nix/main.cc | ng0 | |
Fixes #3186 | |||
2019-10-31 | change deprecated attribute syntax in run examples | matthew | |
2019-10-31 | Merge pull request #3182 from bhipple/fixup/comments | Eelco Dolstra | |
Minor updates to inline comments | |||
2019-10-31 | Minor updates to inline comments | Benjamin Hipple | |
Add missing docstring on InstallableCommand. Also, some of these were wrapped when they're right next to a line longer than the unwrapped line, so we can just unwrap them to save vertical space. | |||
2019-10-30 | minor: fix mismatch of struct/class forward decl of 'Source' | Will Dietz | |
Fixes the following warning and the indicate potential issue: src/libstore/worker-protocol.hh:66:1: warning: class 'Source' was previously declared as a struct; this is valid, but may result in linker errors under the Microsoft C++ ABI [-Wmismatched-tags] (cherry picked from commit 6e1bb04870b1b723282d32182af286646f13bf3c) | |||
2019-10-30 | Replace git show with git log | Janne Heß | |
git show seems to print the entire tag message when being called on a tag instead of a commit. git log instead always prints the correct timestamp in my tests. The error nix prints is: `error: stoull`. | |||
2019-10-29 | queryPathInfoUncached(): Return const ValidPathInfo | Eelco Dolstra | |
2019-10-29 | Move addToStoreFromDump to Store | Eelco Dolstra | |
2019-10-29 | Don't create a Store in processConnection() | Eelco Dolstra | |
2019-10-29 | Move Unix domain socket creation to libutil | Eelco Dolstra | |
Also drop multithread-unfriendly hacks like doing a temporary chmod/umask. | |||
2019-10-29 | Move most of the daemon implementation to libstore | Eelco Dolstra | |
2019-10-29 | Remove the check against concurrent builds in the same process | Eelco Dolstra | |
2019-10-28 | fix typo | matthew | |
2019-10-28 | findDerivationFilename: add FIXME | zimbatm | |
2019-10-28 | nix repl: also handle lambda edit | zimbatm | |
2019-10-28 | editorFor: take a pos object instead | zimbatm | |
2019-10-28 | libexpr: findDerivationFilename return Pos instead of tuple | zimbatm | |
2019-10-27 | Factor out linkOrCopy() | Eelco Dolstra | |
2019-10-27 | Add O(1)-memory copyPath() function | Eelco Dolstra | |
2019-10-27 | Simplification | Eelco Dolstra | |
2019-10-27 | Merge branch 'issue-3147-inNixShell-arg' of https://github.com/hercules-ci/nix | Eelco Dolstra | |
2019-10-27 | Add inNixShell = true to nix-shell auto-call | Robert Hensing | |
This is an alternative to the IN_NIX_SHELL environment variable, allowing the expression to adapt itself to nix-shell without triggering those adaptations when used as a dependency of another shell. Closes #3147 | |||
2019-10-27 | Merge branch 'tojson-tostring-fix' of https://github.com/mayflower/nix | Eelco Dolstra | |
2019-10-27 | builtins.toJSON: fix __toString usage | Robin Gloster | |
2019-10-23 | libexpr: add findDerivationFilename | zimbatm | |
extract the derivation to filename:lineno heuristic | |||
2019-10-23 | libutil: add editorFor heuristic | zimbatm | |
2019-10-23 | nix repl: add :edit command | zimbatm | |
This allows to have a repl-centric workflow to working on nixpkgs. Usage: :edit <package> - heuristic that find the package file path :edit <path> - just open the editor on the file path Once invoked, `nix repl` will open $EDITOR on that file path. Once the editor exits, `nix repl` will automatically reload itself. | |||
2019-10-22 | Use upstream nlohmann_json | Eelco Dolstra | |