Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2005-05-09 | * Crazy: don't use real hashes of real components in examples, since | Eelco Dolstra | 2 | -5/+5 | |
they cause Nix builds to have unnecessary retained dependences (e.g., on Subversion). | |||||
2005-04-10 | * Manual updates. | Eelco Dolstra | 9 | -786/+811 | |
2005-04-09 | * Document nix-channel. | Eelco Dolstra | 7 | -17/+108 | |
2005-04-08 | * Lots of manual updates, in particular the new `nix-store --query' | Eelco Dolstra | 11 | -177/+465 | |
options were documented, as well as the Nix configuration file. | |||||
2005-04-07 | * More doc updates. | Eelco Dolstra | 2 | -53/+88 | |
2005-04-07 | * More manual updates. | Eelco Dolstra | 6 | -30/+154 | |
2005-04-07 | * Build hook documentation. | Eelco Dolstra | 5 | -289/+348 | |
* nix-store options. | |||||
2005-04-07 | * GC docs. | Eelco Dolstra | 3 | -181/+116 | |
2005-04-05 | * Manual updates. | Eelco Dolstra | 5 | -85/+137 | |
2005-04-05 | * Some GC documentation. | Eelco Dolstra | 2 | -40/+50 | |
2005-04-05 | * Use `--nonet' flag. | Eelco Dolstra | 1 | -3/+4 | |
2005-04-01 | * Added a glossary to the manual. | Eelco Dolstra | 4 | -7/+82 | |
2005-03-17 | * Manual updates. | Eelco Dolstra | 5 | -104/+133 | |
2005-03-16 | * Documented common environment variables. | Eelco Dolstra | 8 | -165/+298 | |
2005-03-16 | * Update the user environments figure to show multiple profiles and | Eelco Dolstra | 4 | -53/+52 | |
users. * Change to base-32 hashes. | |||||
2005-03-16 | * Automake 1.9 compatibility. | Eelco Dolstra | 1 | -5/+5 | |
2005-03-15 | * Some more updates. | Eelco Dolstra | 2 | -119/+97 | |
2005-03-15 | * XInclude all the way. | Eelco Dolstra | 8 | -52/+43 | |
2005-03-15 | * Manual updates. | Eelco Dolstra | 4 | -71/+13 | |
2005-01-12 | * NEWS and manual update for release 0.7. | Eelco Dolstra | 2 | -1/+19 | |
2004-12-17 | * Typo: genericBuilder -> genericBuild. | Eelco Dolstra | 1 | -2/+2 | |
2004-11-14 | * More manual fixes. | Eelco Dolstra | 2 | -38/+35 | |
2004-11-14 | * Manual fixes. | Eelco Dolstra | 3 | -51/+50 | |
2004-11-12 | * Document --delete-generations and other nix-env options. | Eelco Dolstra | 1 | -0/+78 | |
2004-11-12 | * Document --eval-only and --parse-only options in nix-instantiate. | Eelco Dolstra | 3 | -0/+37 | |
2004-11-09 | * Typos. | Eelco Dolstra | 1 | -2/+2 | |
2004-11-07 | * Documented the standard environment, including the generic builder. | Eelco Dolstra | 1 | -1/+250 | |
2004-11-07 | * Everything you always wanted to know about functions and derivations | Eelco Dolstra | 2 | -4/+203 | |
but were afraid to ask. | |||||
2004-11-07 | * Drop the grammar appendix. | Eelco Dolstra | 1 | -7/+4 | |
2004-11-07 | * Operators, comments. | Eelco Dolstra | 1 | -2/+123 | |
2004-11-07 | * Lets, inheritance, assertions. | Eelco Dolstra | 1 | -10/+171 | |
2004-11-05 | * Typo fix. | Eelco Dolstra | 1 | -1/+1 | |
2004-11-05 | * Generic builders. | Eelco Dolstra | 1 | -5/+84 | |
2004-11-05 | * Start of language reference. | Eelco Dolstra | 1 | -0/+228 | |
2004-11-05 | * Finished GNU Hello walkthrough. | Eelco Dolstra | 3 | -21/+293 | |
2004-11-04 | * Manual: writing Nix expressions. | Eelco Dolstra | 2 | -117/+192 | |
2004-11-02 | * chapter -> appendix. | Eelco Dolstra | 2 | -2/+4 | |
2004-11-01 | * Section about channels. | Eelco Dolstra | 1 | -1/+46 | |
2004-11-01 | * Section about garbage collection. | Eelco Dolstra | 3 | -5/+71 | |
2004-11-01 | * Profiles section. | Eelco Dolstra | 3 | -16/+165 | |
2004-10-31 | * Document setuid Nix installs. | Eelco Dolstra | 2 | -7/+46 | |
2004-10-31 | * Add figures to `make install' / `make dist'. | Eelco Dolstra | 3 | -2/+6 | |
2004-10-29 | * Began adding build farm docs. | Eelco Dolstra | 3 | -0/+132 | |
2004-10-25 | * New language feature: with expressions. | Eelco Dolstra | 1 | -13/+21 | |
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-18 | * Instead of — use the actual Unicode character. By the way, to | Eelco Dolstra | 3 | -15/+15 | |
edit the manual, you should have something like (modify-coding-system-alist 'file "\\.xml\\>" 'utf-8) in your ~/.emacs. | |||||
2004-10-14 | * Rewrite of package management stuff. | Eelco Dolstra | 1 | -200/+161 | |
2004-10-14 | * Split overview chapter into a chapter on package management and a | Eelco Dolstra | 6 | -455/+384 | |
chapter on writing Nix expressions. | |||||
2004-10-14 | * Unindent. | Eelco Dolstra | 1 | -164/+126 | |
2004-10-13 | * Updated the quick start section. Use channels instead of | Eelco Dolstra | 1 | -105/+83 | |
downloading Nix expressions and calling nix-pull. This is so user-friendly that even a Mac user can do it! :-) | |||||
2004-10-13 | * Better introduction. | Eelco Dolstra | 3 | -120/+123 | |
* Set notes in a different color than warnings. |