Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2006-09-25 | * Use "propagated-user-env-packages", not "propagated-build-inputs" | Eelco Dolstra | 1 | -1/+1 | |
for packages that should be propagated to the user environment. | |||||
2006-09-25 | * Propagated packages now have lower priority; they are symlinked | Eelco Dolstra | 1 | -14/+39 | |
*after* the packages that have been explicitly installed, and collisions are ignored. | |||||
2006-08-22 | * Revert unintentional commit. | Eelco Dolstra | 1 | -1/+1 | |
2006-08-16 | * `nix-instantiate --{eval|parse}-only --xml': print an XML | Eelco Dolstra | 1 | -1/+1 | |
representation instead of an ATerm. * Indent XML output. | |||||
2006-05-12 | * Support for srcdir != builddir (NIX-41). | Eelco Dolstra | 1 | -1/+1 | |
2005-07-22 | * Adhockery. | Eelco Dolstra | 1 | -0/+1 | |
2005-03-07 | * Automatically add propagated build inputs to user environments. | Eelco Dolstra | 1 | -1/+15 | |
Maybe this is a bad idea. | |||||
2004-10-25 | * New language feature: with expressions. | Eelco Dolstra | 1 | -1/+1 | |
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-09-19 | * prevent collision on log directory | Niels Janssen | 1 | -1/+2 | |
2004-04-06 | * Make the creation of user environments much faster and more storage | Eelco Dolstra | 1 | -45/+66 | |
efficient by creating only a single symlink to entire directory trees unless a collission occurs. | |||||
2004-03-15 | * Make perl a dependency of Nix. | Eelco Dolstra | 2 | -2/+4 | |
2004-02-04 | * Fixed the old envpkgs filename. | Eelco Dolstra | 1 | -1/+1 | |
2003-12-30 | * RPM spec file. | Eelco Dolstra | 1 | -4/+4 | |
* Respect DESTDIR variable. | |||||
2003-11-22 | * Don't use a hard-coded path. | Eelco Dolstra | 1 | -0/+9 | |
2003-11-19 | * nix-env: a tool to manage user environments. | Eelco Dolstra | 2 | -0/+81 | |
* Replace all directory reading code by a generic readDirectory() function. |