Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-09-16 | Nicer file names for the release notes | Eelco Dolstra | |
2014-09-16 | Manual build fixes | Eelco Dolstra | |
2014-09-16 | Merge branch 'master' of github.com:thatdocslady/nix | Eelco Dolstra | |
Conflicts: doc/manual/release-notes.xml doc/manual/writing-nix-expressions.xml | |||
2014-09-16 | Add some hyperlinks between NIXPATH and -I | Eelco Dolstra | |
2014-08-28 | allowedRequisites: Drop stdenv mention | Eelco Dolstra | |
I don't think it's a good idea to use allowedRequisites for stdenv, so don't mention it here. | |||
2014-08-28 | Fix manual build | Eelco Dolstra | |
2014-08-28 | Introduce allowedRequisites feature | Gergely Risko | |
2014-08-27 | Restructuring the Nix manual | Mikey Ariel | |
2014-08-23 | Document the "out" usage in allowedReferences | Gergely Risko | |
2014-08-13 | Remove pointless NIX_LOG_TYPE environment variable | Eelco Dolstra | |
2014-08-04 | Update manual | Eelco Dolstra | |
2014-07-24 | nix-copy-closure: Drop --bzip2, --xz, --show-progress | Eelco Dolstra | |
These are too difficult to implement via nix-store --serve. ‘--show-progress’ could be re-implemented fairly easily via a sink/source wrapper class. | |||
2014-07-18 | Bump | Eelco Dolstra | |
2014-07-17 | nix-daemon: Add trusted-users and allowed-users options | Eelco Dolstra | |
‘trusted-users’ is a list of users and groups that have elevated rights, such as the ability to specify binary caches. It defaults to ‘root’. A typical value would be ‘@wheel’ to specify all users in the wheel group. ‘allowed-users’ is a list of users and groups that are allowed to connect to the daemon. It defaults to ‘*’. A typical value would be ‘@users’ to specify the ‘users’ group. | |||
2014-07-16 | Manual: Typo | Eelco Dolstra | |
2014-07-04 | Add builtin function ‘fromJSON’ | Eelco Dolstra | |
Fixes #294. | |||
2014-07-03 | Manual: html -> xhtml | Eelco Dolstra | |
2014-06-27 | Add `--json` argument to `nix-instantiate` | Paul Colomiets | |
2014-05-26 | Rephrase @ operator description | Adam Szkoda | |
2014-05-21 | nix-store -l: Fetch build logs from the Internet | Eelco Dolstra | |
If a build log is not available locally, then ‘nix-store -l’ will now try to download it from the servers listed in the ‘log-servers’ option in nix.conf. For instance, if you have: log-servers = http://hydra.nixos.org/log then it will try to get logs from http://hydra.nixos.org/log/<base name of the store path>. So you can do things like: $ nix-store -l $(which xterm) and get a log even if xterm wasn't built locally. | |||
2014-05-13 | fix typo | Charles Strahan | |
2014-05-02 | Simplify multi-user installation instructions | Eelco Dolstra | |
2014-04-28 | doc fix: swap 'import' and 'export' | Charles Strahan | |
2014-04-25 | trunk -> master | Eelco Dolstra | |
2014-04-15 | nix-env: Minor change to '--delete-generations Nd' semantics | Ricardo M. Correia | |
The option '--delete-generations Nd' deletes all generations older than N days. However, most likely the user does not want to delete the generation that was active N days ago. For example, say that you have these 3 generations: 1: <30 days ago> 2: <15 days ago> 3: <1 hour ago> If you do --delete-generations 7d (say, as part of a cron job), most likely you still want to keep generation 2, i.e. the generation that was active 7 days ago (and for most of the past 7 days, in fact). This patch fixes this issue. Note that this also affects 'nix-collect-garbage --delete-older-than Nd'. Thanks to @roconnor for noticing the issue! | |||
2014-04-11 | Bump date | Eelco Dolstra | |
2014-04-10 | Don't barf when installing as root | Eelco Dolstra | |
2014-04-09 | Add docbook icons to the distribution | Eelco Dolstra | |
Grmbl... | |||
2014-04-08 | Simplify quick start section | Eelco Dolstra | |
2014-04-08 | Remove redundant stuff | Eelco Dolstra | |
2014-04-08 | Update installation instructions | Eelco Dolstra | |
2014-04-07 | Update release notes | Eelco Dolstra | |
2014-04-04 | Update release notes | Eelco Dolstra | |
2014-04-04 | Document that we require a C++11 compiler | Eelco Dolstra | |
2014-03-30 | nix-collect-garbage: Add --delete-older-than option | Ricardo M. Correia | |
2014-03-30 | nix-env: Add support for --delete-generations 15d | Ricardo M. Correia | |
It will delete all generations older than the specified number of days. | |||
2014-03-12 | Document nix-env -q --json | Eelco Dolstra | |
2014-03-12 | Generate release notes again | Eelco Dolstra | |
2014-03-12 | Update release notes for 1.7 | Eelco Dolstra | |
2014-03-11 | Fix typos | Eelco Dolstra | |
2014-03-11 | Document null dynamic attrs | Shea Levy | |
2014-02-28 | Typo | Eelco Dolstra | |
2014-02-26 | Also provide an option for setting the curl connection timeout | Eelco Dolstra | |
2014-02-26 | Document dynamic attributes | Shea Levy | |
Signed-off-by: Shea Levy <shea@shealevy.com> | |||
2014-02-19 | nix-shell: Add --packages flag | Eelco Dolstra | |
This allows you to easily set up a build environment containing the specified packages from Nixpkgs. For example: $ nix-shell -p sqlite xorg.libX11 hello will start a shell in which the given packages are present. | |||
2014-02-19 | nix-instantiate: Rename --eval-only to --eval, --parse-only to --parse | Eelco Dolstra | |
2014-02-19 | nix-instantiate: Add a flag --expr / -E to read expressions from the command ↵ | Eelco Dolstra | |
line This is basically a shortcut for ‘echo 'expr...' | nix-instantiate -’. Also supported by nix-build and nix-shell. | |||
2014-02-19 | Move manpages around | Eelco Dolstra | |
2014-02-17 | nix-store --gc --max-freed: Support a unit specifier | Eelco Dolstra | |
E.g. "--max-freed 10G" means "free ten gigabytes". | |||
2014-02-17 | nix-shell: Execute shellHook if it exists | Eelco Dolstra | |
Since normal builds don't execute shellHook, this allows nix-shell specific customisation. Suggested by Domen. |