Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-25 | Merge remote-tracking branch 'origin/master' into flakes | Eelco Dolstra | |
2019-06-25 | nix-channel: Don't fetch binary-cache-url | Eelco Dolstra | |
This has been ignored since the Perl->C++ rewrite. | |||
2019-06-20 | Nix uses the CPP SDK, not Java | Bruno Bieth | |
2019-06-18 | Merge pull request #2917 from CSVdB/docs | Eelco Dolstra | |
Updated flake documentation | |||
2019-06-18 | Updated documentation | Eelco Dolstra | |
2019-06-17 | Merge remote-tracking branch 'origin/master' into flakes | Eelco Dolstra | |
2019-06-04 | Minor typo | JorisE | |
2019-06-03 | Made epochs more fine-grained | Nick Van den Broeck | |
Fixes #2894 | |||
2019-05-31 | Rename requires -> inputs, provides -> outputs | Eelco Dolstra | |
Issue #2828. | |||
2019-05-29 | Merge remote-tracking branch 'origin/master' into flakes | Eelco Dolstra | |
2019-05-21 | doc: clarify that optional attrs in a function argument will be ignored ↵ | Maximilian Bosch | |
unless specified In `args@{ a ? 1 }: /* ... */` the value `a` won't be a part of `args` unless it's specified when calling the function, the default value will be ignored in this case. My personal point of view is that this behavior is a matter of taste, at least I was pretty sure that unmatched arguments will be a part of `args@` while debugging some Nix code last week. I decided to add a warning to the docs which hopefully reduces the confusion of further Nix developers who thought the same about `args@`. | |||
2019-05-17 | docs: describe $IN_NIX_SHELL values (#2796) | Vladimír Čunát | |
See commit 1bffd83e1a9 | |||
2019-05-15 | Start of flake documentation | Eelco Dolstra | |
Imported from https://gist.github.com/edolstra/40da6e3a4d4ee8fd019395365e0772e7. The goal is to turn this into an RFC eventually and later to integrate it into the manual. | |||
2019-05-12 | Clarify where output from the diff hook goes. | Graham Christensen | |
2019-05-12 | diff hook: execute as the build user, and pass the temp dir | Graham Christensen | |
2019-05-12 | build: run diff-hook under --check and document diff-hook | Graham Christensen | |
2019-05-08 | Merge pull request #2765 from nh2/manual-nixpkgs-word | Eelco Dolstra | |
manual: "Nix Package collection" -> "Nixpkgs package collection". | |||
2019-05-03 | Add builtins.hashFile | Daniel Schaefer | |
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-04-14 | manual: "Nix Package collection" -> "Nixpkgs package collection". | Niklas Hambüchen | |
Makes difference between Nix and Nixpkgs clearer to avoid some common confusion this sentence on IRC. Also disambiguate an "it" reference. | |||
2019-03-31 | docs: Mention `--max-jobs 0` to build remotely only | Niklas Hambüchen | |
2019-03-25 | manual: mention the "channel:" shorthand for NIX_PATH | Dmitry Kalinkin | |
Bumped to 15.09 because older channels, when downloaded from nixos.org, require firefox to be accessed via `pkgs.firefox` | |||
2019-03-24 | Add isPath primop | zimbatm | |
this is added for completeness' sake since all the other possible `builtins.typeOf` results have a corresponding `builtins.is<Type>` | |||
2019-03-21 | manual: include builtins.* for globally available builtins | Linus Heckemann | |
This improves searchability. | |||
2019-03-16 | Link to `builders-use-substitutes` in chapter on distributed builds | Joachim Breitner | |
fixes #2730. | |||
2019-03-14 | docs: fix typo in AllowDirectReads | Andreas Rammhold | |
It was just missing an `l` but should be fixed anyway. | |||
2019-03-01 | manual nitpick: document sha512 support in hashString | Vladimír Čunát | |
2019-01-23 | nix-store: make --dump-db take a list of paths to dump | Spencer Baugh | |
Inside a derivation, exportReferencesGraph already provides a way to dump the Nix database for a specific closure. On the command line, --dump-db gave us the same information, but only for the entire Nix database at once. With this change, one can now pass a list of paths to --dump-db to get the Nix database dumped for just those paths. (The user is responsible for ensuring this is a closure, like for --export). Among other things, this is useful for deploying a closure to a new host without using --import/--export; one can use tar to transfer the store paths, and --dump-db/--load-db to transfer the validity information. This is useful if the new host doesn't actually have Nix yet, and the closure that is being deployed itself contains Nix. | |||
2019-01-20 | Merge pull request #2635 from veprbl/patch-7 | Domen Kožar | |
manual: "sandbox" option default is "true" on Linux | |||
2019-01-19 | manual: "sandbox" option default is "true" on Linux | Dmitry Kalinkin | |
Fixes: 812e39313c ('Enable sandboxing by default') | |||
2019-01-18 | Update instructions for Haskell script using nix-shell interpreter | Samuel Evans-Powell | |
- The instructions for using nix-shell as an interpreter has a Haskell script example that doesn't work on more recent versions of Nix. Update the instructions with a working command | |||
2019-01-10 | Add 2.2 release notes | Eelco Dolstra | |
2019-01-07 | Don't look for a "pv" program, or mention it in the manual source | John Ericson | |
The manual reference was commented out, and the sole reference to this program other than the configure script. Removed both. | |||
2018-12-14 | Clarify nix-instantiate --read-write-mode | Patrick Hilhorst | |
2018-12-13 | Merge pull request #2569 from veprbl/pr/update_prerequisites | Eelco Dolstra | |
docs: add missing prerequisites: brotli, boost, libseccomp | |||
2018-12-13 | docs: raise minimal boost version to 1.66 | Dmitry Kalinkin | |
2018-12-10 | docs: add missing prerequisites: brotli, boost, libseccomp | Dmitry Kalinkin | |
2018-12-08 | s3: document scheme query parameter | Daiderd Jordan | |
2018-11-13 | Merge branch 'feature/editline-pr' of https://github.com/dtzWill/nix | Eelco Dolstra | |
2018-11-13 | manual: quote $servlets | Felix C. Stegerman | |
2018-11-12 | fix typo (s/gift/git/) | Felix C. Stegerman | |
2018-11-09 | Manual: build locally -> build | Eelco Dolstra | |
2018-11-09 | Urgh | Eelco Dolstra | |
2018-11-08 | Fix manual build | Linus Heckemann | |
This was broken by some missing closing tags in 0bea4a50e03 | |||
2018-11-08 | Merge pull request #2524 from domenkozar/deprecate-toPath | Eelco Dolstra | |
Deprecate builtins.toPath | |||
2018-11-08 | Deprecate builtins.toPath | Domen Kožar | |
2018-11-07 | Enable sandboxing by default | Eelco Dolstra | |
Closes #179. | |||
2018-11-07 | Document allowSubstitutes | Eelco Dolstra | |
2018-11-07 | Fix preferLocalBuild description | Eelco Dolstra | |
preferLocalBuild does not in fact prevent substitution. | |||
2018-10-29 | editline: wip | Will Dietz | |
2018-10-20 | Add --graphml option to the nix-store --query command | Antoine Eiche | |
This prints the references graph of the store paths in the graphML format [1]. The graphML format is supported by several graph tools such as the Python Networkx library or the Apache Thinkerpop project. [1] http://graphml.graphdrawing.org |