Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-01-02 | Merge remote-tracking branch 'origin/master' into coerce-string | Eelco Dolstra | |
2023-01-02 | antiquotation -> string interpolation | Valentin Gagarin | |
as proposed by @mkaito[1] and @tazjin[2] and discussed with @edolstra and Nix maintainers [1]: https://github.com/NixOS/nix.dev/pull/267#issuecomment-1270076332 [2]: https://github.com/NixOS/nix.dev/pull/267#issuecomment-1270201979 Co-authored-by: John Ericson <git@JohnEricson.me> Co-authored-by: Eelco Dolstra <edolstra@gmail.com> | |||
2022-12-23 | nix develop: Set personality | Eelco Dolstra | |
This makes 'nix develop' set the Linux personality in the same way that the actual build does, allowing a command like 'nix develop nix#devShells.i686-linux.default' on x86_64-linux to work correctly. | |||
2022-12-13 | Merge pull request #7456 from ncfavier/fix-links | Eelco Dolstra | |
doc: fix links | |||
2022-12-13 | doc: fix links | Naïm Favier | |
2022-12-12 | Merge remote-tracking branch 'upstream/master' into indexed-store-path-outputs | John Ericson | |
2022-12-12 | Improve release notes | John Ericson | |
2022-12-12 | Add links to the manual | Eelco Dolstra | |
Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io> | |||
2022-12-12 | Support flake references in the old CLI | Eelco Dolstra | |
Fixes #7026. | |||
2022-12-12 | Merge branch 'master' into indexed-store-path-outputs | John Ericson | |
2022-12-07 | Merge branch 'master' into remove-repeat | Eelco Dolstra | |
2022-12-07 | Remove repeat and enforce-determinism options | Linus Heckemann | |
These only functioned if a very narrow combination of conditions held: - The result path does not yet exist (--check did not result in repeated builds), AND - The result path is not available from any configured substituters, AND - No remote builders that can build the path are available. If any of these do not hold, a derivation would be built 0 or 1 times regardless of the repeat option. Thus, remove it to avoid confusion. | |||
2022-12-06 | Release notes | Eelco Dolstra | |
2022-12-01 | move documentation on `auto-allocate-uids` to options docs | Valentin Gagarin | |
this is where it belongs and can be found together with the other options. | |||
2022-11-28 | Add example | Eelco Dolstra | |
2022-11-28 | Add a setting for enabling cgroups | Eelco Dolstra | |
2022-11-25 | Merge branch 'master' into indexed-store-path-outputs | John Ericson | |
2022-11-23 | Include UID in hex | Eelco Dolstra | |
2022-11-23 | Add release notes | Eelco Dolstra | |
2022-11-14 | Add release-notes for the context-restriction in readFile | Théophane Hufschmitt | |
2022-10-28 | Merge branch 'master' into indexed-store-path-outputs | John Ericson | |
2022-10-22 | Fixup merge typo | Guillaume Maudoux | |
2022-10-16 | Merge remote-tracking branch 'origin/master' into coerce-string | Guillaume Maudoux | |
2022-09-16 | release-notes/rl-next.md: note new argument to fetchurl.nix | Adam Joseph | |
2022-09-07 | WIP: broken merge but need a git checkpoint | Guillaume Maudoux | |
2022-08-24 | Branch 2.11 release notes | Eelco Dolstra | |
2022-07-20 | Merge branch 'master' into parallel-nix-copy | Théophane Hufschmitt | |
2022-07-15 | Leverage existing docs for new store-path^outputs syntax | John Ericson | |
2022-07-15 | Remove `computed-derivations` experimental feature | John Ericson | |
We don't need it yet. | |||
2022-07-14 | Merge remote-tracking branch 'upstream/master' into indexed-store-path-outputs | John Ericson | |
2022-07-11 | Branch 2.10 release notes | Eelco Dolstra | |
2022-07-11 | Update release notes | Eelco Dolstra | |
2022-07-06 | Add a release notes entry for #4914 | Théophane Hufschmitt | |
cc @gytis-ivaskevicius | |||
2022-06-15 | Apply suggestions from code review | tomberek | |
Co-authored-by: Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com> | |||
2022-06-08 | Mention the parallel copy in the release notes | Théophane Hufschmitt | |
2022-06-02 | Merge branch 'master' into nix-repl-flakes | Tom Bereknyei | |
2022-06-02 | Merge remote-tracking branch 'upstream/master' into indexed-store-path-outputs | John Ericson | |
2022-06-01 | Merge branch 'master' into lto | Théophane Hufschmitt | |
2022-05-31 | Typo | Eelco Dolstra | |
2022-05-30 | Branch 2.9 release notes | Eelco Dolstra | |
2022-05-30 | Respect the outputSpecified attribute | Eelco Dolstra | |
E.g. 'nix build nixpkgs#libxml2.dev' will build the 'dev' output. | |||
2022-05-25 | Merge branch 'master' into debug-exploratory-PR | Ben Burdette | |
2022-05-25 | add --debugger to rl-next list | Ben Burdette | |
2022-05-25 | Merge branch 'master' into lto | pennae | |
2022-05-20 | repl: clarify change and usage of <nixpkgs> | Tom Bereknyei | |
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 | repl: update docs with installables | Tom Bereknyei | |
2022-05-12 | Merge remote-tracking branch 'upstream/master' into indexed-store-path-outputs | John Ericson | |
2022-05-03 | Allow selecting derivation outputs using 'installable!outputs' | Eelco Dolstra | |
E.g. 'nixpkgs#glibc^dev,static' or 'nixpkgs#glibc^*'. | |||
2022-04-29 | Add release notes for error traces revamp | Guillaume Maudoux | |