Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2006-07-24 | * Refactoring to support domain checks. | Eelco Dolstra | 1 | -4/+3 | |
2006-07-19 | * Better error messages (especially wrt types). | Eelco Dolstra | 1 | -4/+4 | |
2006-05-30 | * Don't use badTerm, it gives awful error messages. | Eelco Dolstra | 1 | -1/+2 | |
2006-05-04 | * Use the new ATermMap. | Eelco Dolstra | 1 | -21/+21 | |
2006-05-02 | * Huge reduction in memory use (2/3 or so on large nix-env -qas | Eelco Dolstra | 1 | -8/+8 | |
operations): share ATermMaps between DrvInfos. | |||||
2006-05-02 | * Some preliminaries towards NIX-45. | Eelco Dolstra | 1 | -1/+1 | |
2006-05-01 | * Allow string concatenations involving derivations, e.g., | Eelco Dolstra | 1 | -0/+4 | |
configureFlags = "--with-freetype2-library=" + freetype + "/lib"; | |||||
2006-03-23 | * In `nix-env', look for derivations inside attribute sets that have | Eelco Dolstra | 1 | -1/+15 | |
the `recurseForDerivations' attribute set to `true'. | |||||
2006-03-10 | * `nix-env -qa --description' shows human-readable descriptions of | Eelco Dolstra | 1 | -0/+43 | |
packages (provided that they have a `meta.description' attribute). E.g., $ ./src/nix-env/nix-env -qa --description gcc gcc-4.0.2 GNU Compiler Collection, 4.0.x (cross-compiler for sparc-linux) gcc-4.0.2 GNU Compiler Collection, 4.0.x (cross-compiler for mips-linux) gcc-4.0.2 GNU Compiler Collection, 4.0.x (cross-compiler for arm-linux) gcc-4.0.2 GNU Compiler Collection, 4.0.x | |||||
2006-03-09 | * Regression: semantics of the result of getDerivation() changed. | Eelco Dolstra | 1 | -2/+2 | |
2006-03-08 | * When obtaining derivations from Nix expressions, ignore all | Eelco Dolstra | 1 | -34/+50 | |
expressions that cause an assertion failure (like `assert system == "i686-linux"'). This allows all-packages.nix in Nixpkgs to be used on all platforms, even if some Nix expressions don't work on all platforms. Not sure if this is a good idea; it's a bit hacky. In particular, due to laziness some derivations might appear in `nix-env -qa' but disappear in `nix-env -qas' or `nix-env -i'. Commit 5000! | |||||
2006-02-10 | * In nix-instantiate, allow us to specify a "path" to the | Eelco Dolstra | 1 | -26/+74 | |
derivation(s) we're interested, e.g., $ nix-instantiate ./all-packages.nix --attr xlibs.libX11 List elements can also be selected: $ nix-instantiate ./build-for-release.nix --attr 0.subversion This allows a non-ambiguous specification of a derivation. Of course, this should also be added to nix-env and nix-build. | |||||
2006-02-08 | * When querying all derivations, filter out syntactically equal derivations. | Eelco Dolstra | 1 | -12/+36 | |
2006-02-08 | * When evaluating, automatically call functions with default arguments. | Eelco Dolstra | 1 | -4/+23 | |
2006-02-08 | * Refactoring: move derivation evaluation to libexpr. | Eelco Dolstra | 1 | -0/+67 | |