Eelco Dolstra
78c72bf10e
* channels -> channels-v3, catamaran -> nix.cs.uu.nl.
2005-08-01 07:30:35 +00:00
Eelco Dolstra
a5ceb5bc0b
* nix-build: default to `./default.nix' if no paths are specified.
...
So when using Nix as a build tool, you can just say `nix-build' and
it will build the top-level derivation defined in `default.nix'.
2005-07-13 17:39:10 +00:00
Eelco Dolstra
82d771f6e6
* Manual updates.
2005-04-10 20:54:21 +00:00
Eelco Dolstra
fb45b0f548
* Document nix-channel.
2005-04-09 17:16:00 +00:00
Eelco Dolstra
8b70f138e0
* Lots of manual updates, in particular the new `nix-store --query'
...
options were documented, as well as the Nix configuration file.
2005-04-08 13:00:38 +00:00
Eelco Dolstra
67eff20906
* Manual updates.
2005-03-17 10:30:53 +00:00
Eelco Dolstra
f982df3cd7
* Update the user environments figure to show multiple profiles and
...
users.
* Change to base-32 hashes.
2005-03-16 14:40:48 +00:00
Eelco Dolstra
b376565b86
* Manual updates.
2005-03-15 13:21:32 +00:00
Eelco Dolstra
0b79a12082
* Manual fixes.
2004-11-14 00:24:57 +00:00
Eelco Dolstra
0913f5a615
* Section about channels.
2004-11-01 16:21:37 +00:00
Eelco Dolstra
ee5dcfade2
* Section about garbage collection.
2004-11-01 16:03:35 +00:00
Eelco Dolstra
cbe8de592d
* Profiles section.
2004-11-01 12:02:44 +00:00
Eelco Dolstra
0d80d237c5
* Add figures to make install' /
make dist'.
2004-10-31 16:13:25 +00:00
Eelco Dolstra
37d7abd694
* New language feature: with expressions.
...
The expression `with E1; E2' evaluates to E2 with all bindings in
the attribute set E1 substituted. E.g.,
with {x = 123;}; x
evaluates to 123. That is, the attribute set E1 is in scope in E2.
This is particularly useful when importing files containing lots
definitions. E.g., instead of
let {
inherit (import ./foo.nix) a b c d e f;
body = ... a ... f ...;
}
we can now say
with import ./foo.nix;
... a ... f ...
I.e., we don't have to say what variables should be brought into scope.
2004-10-25 16:54:56 +00:00
Eelco Dolstra
2cd590d96c
* Instead of — use the actual Unicode character. By the way, to
...
edit the manual, you should have something like
(modify-coding-system-alist 'file "\\.xml\\>" 'utf-8)
in your ~/.emacs.
2004-10-18 12:22:14 +00:00
Eelco Dolstra
692204e0c5
* Rewrite of package management stuff.
2004-10-14 16:43:09 +00:00
Eelco Dolstra
febd8bed1b
* Split overview chapter into a chapter on package management and a
...
chapter on writing Nix expressions.
2004-10-14 11:55:12 +00:00