Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-05-21 | typo: defaultApps → defaultApp | Naïm Camille Favier | |
2022-05-20 | remove special tryEval behavior | Ben Burdette | |
2022-05-20 | debugRepl ftn pointer | Ben Burdette | |
2022-05-19 | 'debugMode' | Ben Burdette | |
2022-05-19 | Merge pull request #6553 from Artturin/raisefilelimit | Eelco Dolstra | |
nix-daemon.service: sync LimitNOFILE with the nixos service | |||
2022-05-19 | de-const evalState exceptions | Ben Burdette | |
2022-05-19 | nix-daemon.service: sync LimitNOFILE with the nixos service | Artturin | |
https://github.com/NixOS/nixpkgs/blob/5628480acda2985cc334d0c5ec85512858ed60f9/nixos/modules/services/misc/nix-daemon.nix#L737 Closes https://github.com/NixOS/nix/issues/6007 | |||
2022-05-19 | Merge branch 'debug-exploratory-PR' into debuggerHook-eval-arg | Ben Burdette | |
2022-05-19 | use an expr->StaticEnv table in evalState | Ben Burdette | |
2022-05-19 | fetchTree: Allow fetching plain files | Tony Olagbaiye | |
Add a new `file` fetcher type, which will fetch a plain file over http(s), or from the local file. Because plain `http(s)://` or `file://` urls can already correspond to `tarball` inputs (if the path ends-up with a know archive extension), the URL parsing logic is a bit convuluted in that: - {http,https,file}:// urls will be interpreted as either a tarball or a file input, depending on the extensions of the path part (so `https://foo.com/bar` will be a `file` input and `https://foo.com/bar.tar.gz` as a `tarball` input) - `file+{something}://` urls will be interpreted as `file` urls (with the `file+` part removed) - `tarball+{something}://` urls will be interpreted as `tarball` urls (with the `tarball+` part removed) Fix #3785 Co-Authored-By: Tony Olagbaiye <me@fron.io> | |||
2022-05-18 | Merge pull request #6544 from ncfavier/getFlake-no-write-lock-file | Théophane Hufschmitt | |
Do not attempt to write a lock file in builtins.getFlake | |||
2022-05-18 | Do not attempt to write a lock file in builtins.getFlake | Naïm Favier | |
Fixes https://github.com/NixOS/nix/issues/6541 | |||
2022-05-18 | Merge pull request #6543 from herberteuler/master | Eelco Dolstra | |
primop_match: fix example letter case in document | |||
2022-05-18 | primop_match: fix example letter case in document | zhujun | |
2022-05-16 | first whack at passing evalState as an arg to debuggerHook. | Ben Burdette | |
2022-05-16 | Merge pull request #6522 from elikoga/master | Théophane Hufschmitt | |
Add priority for nix profile install | |||
2022-05-16 | Make nix::eval_cache::int_t more idiomatic | Théophane Hufschmitt | |
Don’t explicitely give it a constructor, but use aggregate initialization instead (also prevents having an implicit coertion, which is probably good here) | |||
2022-05-16 | change priority conflict message | Eli Kogan-Wang | |
2022-05-16 | resolve redundant priority passing, wrap NixInt in eval-cache variant | Eli Kogan-Wang | |
2022-05-16 | Merge pull request #6517 from NixOS/document-the-libexpr-tests | Eelco Dolstra | |
Expand the testing section of the hacking docs | |||
2022-05-16 | Add int to eval-cache, bump eval cache schema version | Eli Kogan-Wang | |
2022-05-16 | Merge branch 'NixOS:master' into master | elikoga | |
2022-05-15 | fix thunk issue | Ben Burdette | |
2022-05-15 | remove extra argument | Ben Burdette | |
2022-05-13 | Integrate review changes | Eli Kogan-Wang | |
2022-05-13 | fix: alignment during flake show of legacyPackages | Tom Bereknyei | |
Fixes: https://github.com/NixOS/nix/issues/6240 https://github.com/NixOS/nix/issues/6045 | |||
2022-05-13 | Merge pull request #6525 from J-Swift/feature/bash-prefix | Eelco Dolstra | |
Add `bash-prompt-prefix` option | |||
2022-05-12 | remove debug code | Ben Burdette | |
2022-05-12 | remove debug code | Ben Burdette | |
2022-05-12 | Merge branch 'debugThrow' into debug-exploratory-PR | Ben Burdette | |
2022-05-12 | template-ize debugThrow | Ben Burdette | |
2022-05-12 | Don’t recommend writing unit tests | Théophane Hufschmitt | |
As asked in <https://github.com/NixOS/nix/pull/6517#discussion_r869416905> | |||
2022-05-12 | Merge branch 'fix-unrecognized-archive-format' of https://github.com/NobbZ/nix | Eelco Dolstra | |
2022-05-12 | fix GitHub URL template | Norbert Melzer | |
2022-05-11 | Merge pull request #6523 from ncfavier/stop-logger-legacy | Théophane Hufschmitt | |
Stop the logger properly in legacy commands | |||
2022-05-11 | Stop the logger properly in legacy commands | Naïm Favier | |
Ensures the logger is stopped on exit in legacy commands. Without this, when using `nix-build --log-format bar` and stopping nix with CTRL+C, the bar is not cleared from the screen. | |||
2022-05-11 | Add priority for nix profile install | Eli Kogan-Wang | |
2022-05-11 | Fix static build | Eelco Dolstra | |
https://hydra.nixos.org/build/176211267 | |||
2022-05-10 | Add documentation for bash-prompt-prefix | Jimmy Reichley | |
2022-05-10 | Allow setting bash-prompt-prefix nix develop configuration | Jimmy Reichley | |
2022-05-10 | Merge pull request #6497 from danielfullmer/ghe-fetcher-url | Eelco Dolstra | |
Use correct URL for GitHub Enterprise | |||
2022-05-10 | Merge pull request #6518 from edolstra/fix-nix-develop | Eelco Dolstra | |
nix develop: Find bin/bash in the bashInteractive outputs | |||
2022-05-10 | nix develop: Find bin/bash in the bashInteractive outputs | Eelco Dolstra | |
2022-05-10 | Expand the testing section of the hacking docs | Théophane Hufschmitt | |
- Make it clear what the different kind of tests are, where they live and how they can be ran - Ask people to primarily write unit tests | |||
2022-05-10 | Merge pull request #6510 from ↵ | Eelco Dolstra | |
NixOS/dependabot/github_actions/docker/login-action-2 Bump docker/login-action from 1 to 2 | |||
2022-05-09 | Bump docker/login-action from 1 to 2 | dependabot[bot] | |
Bumps [docker/login-action](https://github.com/docker/login-action) from 1 to 2. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v1...v2) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> | |||
2022-05-09 | Merge branch 'master' into debug-exploratory-PR | Ben Burdette | |
2022-05-09 | Merge pull request #6505 from jtojnar/patch-3 | Théophane Hufschmitt | |
libexpr: Fix manual link in error message | |||
2022-05-08 | libexpr: Fix manual link in error message | Jan Tojnar | |
It was changed to the old manual in https://github.com/NixOS/nix/commit/8895fa70a4b05ddebbb5a23ea96464d5e01345fb | |||
2022-05-06 | Use correct URL for GitHub Enterprise | Daniel Fullmer | |
For GitHub Enterprise, the API is accessed through a slightly different URL. See [1], where it says: > Use http(s)://[hostname]/api/v3 to access the API for GitHub > Enterprise Server. Also tested working on a GHE instance. [1] https://docs.github.com/en/enterprise-server@3.3/rest/guides/getting-started-with-the-rest-api |