aboutsummaryrefslogtreecommitdiff
path: root/doc/manual/package-management.xml
AgeCommit message (Collapse)Author
2013-09-02Fix manual errorEelco Dolstra
Reported by Matija Å uklje. Fixes #163.
2013-08-26Fix typos, especially those that end up in the Nix manualIvan Kozik
2013-01-02Manual: Fix "nix-store --export" exampleEelco Dolstra
2012-11-09Use a shorter Nixpkgs channel URLEelco Dolstra
2012-07-30Manual: Remove reference to non-existent -I optionEelco Dolstra
2010-03-16* Fix a broken link (reported by Peter Koppstein).Eelco Dolstra
2010-02-05* Fix a broken link (reported by Bjorn Buckwalter).Eelco Dolstra
2009-11-05* Various updates.Eelco Dolstra
2009-07-14* Remove the redundant <sections> around refentries.Eelco Dolstra
2008-11-19* Documented some of the sharing mechanisms. Eelco Dolstra
2008-06-09* Updated some URLs (did this a long time ago but forgot toEelco Dolstra
commit...).
2007-12-04* component -> package.Eelco Dolstra
2006-10-26* Typo reported by Arie Middelkoop.Eelco Dolstra
* Left out close-quote in example.
2006-10-02* Manual.Eelco Dolstra
2006-09-29* One-click installs.Eelco Dolstra
2006-09-29* Document nix-install-package and the nixpkg file format.Eelco Dolstra
2006-09-29* Manual.Eelco Dolstra
2006-08-21* Convert to DocBook 5.Eelco Dolstra
* Use Jing for RelaxNG validation, xmllint seems buggy.
2005-08-01* channels -> channels-v3, catamaran -> nix.cs.uu.nl.Eelco Dolstra
2005-07-13* nix-build: default to `./default.nix' if no paths are specified.Eelco Dolstra
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
2005-04-09* Document nix-channel.Eelco Dolstra
2005-04-08* Lots of manual updates, in particular the new `nix-store --query'Eelco Dolstra
options were documented, as well as the Nix configuration file.
2005-03-17* Manual updates.Eelco Dolstra
2005-03-16* Update the user environments figure to show multiple profiles andEelco Dolstra
users. * Change to base-32 hashes.
2005-03-15* Manual updates.Eelco Dolstra
2004-11-14* Manual fixes.Eelco Dolstra
2004-11-01* Section about channels.Eelco Dolstra
2004-11-01* Section about garbage collection.Eelco Dolstra
2004-11-01* Profiles section.Eelco Dolstra
2004-10-31* Add figures to `make install' / `make dist'.Eelco Dolstra
2004-10-25* New language feature: with expressions.Eelco Dolstra
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 &mdash; use the actual Unicode character. By the way, toEelco Dolstra
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
2004-10-14* Split overview chapter into a chapter on package management and aEelco Dolstra
chapter on writing Nix expressions.