Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2006-10-26 | * Typo reported by Arie Middelkoop. | Eelco Dolstra | 1 | -1/+1 | |
* Left out close-quote in example. | |||||
2006-10-02 | * Manual. | Eelco Dolstra | 1 | -1/+17 | |
2006-09-29 | * One-click installs. | Eelco Dolstra | 1 | -1/+31 | |
2006-09-29 | * Document nix-install-package and the nixpkg file format. | Eelco Dolstra | 1 | -1/+1 | |
2006-09-29 | * Manual. | Eelco Dolstra | 1 | -2/+22 | |
2006-08-21 | * Convert to DocBook 5. | Eelco Dolstra | 1 | -21/+26 | |
* Use Jing for RelaxNG validation, xmllint seems buggy. | |||||
2005-08-01 | * channels -> channels-v3, catamaran -> nix.cs.uu.nl. | Eelco Dolstra | 1 | -8/+7 | |
2005-07-13 | * nix-build: default to `./default.nix' if no paths are specified. | Eelco Dolstra | 1 | -1/+1 | |
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-04-10 | * Manual updates. | Eelco Dolstra | 1 | -17/+15 | |
2005-04-09 | * Document nix-channel. | Eelco Dolstra | 1 | -4/+5 | |
2005-04-08 | * Lots of manual updates, in particular the new `nix-store --query' | Eelco Dolstra | 1 | -15/+24 | |
options were documented, as well as the Nix configuration file. | |||||
2005-03-17 | * Manual updates. | Eelco Dolstra | 1 | -1/+1 | |
2005-03-16 | * Update the user environments figure to show multiple profiles and | Eelco Dolstra | 1 | -51/+50 | |
users. * Change to base-32 hashes. | |||||
2005-03-15 | * Manual updates. | Eelco Dolstra | 1 | -6/+6 | |
2004-11-14 | * Manual fixes. | Eelco Dolstra | 1 | -28/+29 | |
2004-11-01 | * Section about channels. | Eelco Dolstra | 1 | -1/+46 | |
2004-11-01 | * Section about garbage collection. | Eelco Dolstra | 1 | -0/+62 | |
2004-11-01 | * Profiles section. | Eelco Dolstra | 1 | -14/+163 | |
2004-10-31 | * Add figures to `make install' / `make dist'. | Eelco Dolstra | 1 | -1/+1 | |
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 | 1 | -8/+8 | |
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 | 1 | -0/+229 | |
chapter on writing Nix expressions. |