aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr
AgeCommit message (Expand)Author
2011-12-02* Move parseHash16or32 into libutil, and use in nix-hash.Eelco Dolstra
2011-12-01* Allow '<nixexpr>' syntax to be used in nix-instantiate, nix-buildEelco Dolstra
2011-10-27* In printValueAsXML, handle the case where a "type" attribute is notEelco Dolstra
2011-08-31* Eliminate all uses of the global variable ‘store’ from libstore.Eelco Dolstra
2011-08-06* Cache the result of file evaluation (i.e, memoize evalFile()). ThisEelco Dolstra
2011-08-06* Handle the case where the search path element is a regular file.Eelco Dolstra
2011-08-06* Remove a debug statement.Eelco Dolstra
2011-08-06* Add the Nix corepkgs to the end of the search path. This makes itEelco Dolstra
2011-08-06* Allow redirections in search path entries. E.g. if you have aEelco Dolstra
2011-08-06* Add a Nix expression search path feature. Paths between angleEelco Dolstra
2011-08-06* Refactoring: move parseExprFromFile() and parseExprFromString() intoEelco Dolstra
2011-07-20* Don't allow derivations with fixed and non-fixed outputs.Eelco Dolstra
2011-07-20* Fix a huuuuge security hole in the Nix daemon. It didn't check thatEelco Dolstra
2011-07-18* Support multiple outputs. A derivation can declare multiple outputsEelco Dolstra
2011-07-13* Allow attribute names to be strings. Based on theEelco Dolstra
2011-07-13* Allow a default value in attribute selection by writingEelco Dolstra
2011-07-06* Change the right-hand side of the ‘.’ operator from an attribute toEelco Dolstra
2011-07-06* In the ‘?’ operator, allow attribute paths. For instance, you canEelco Dolstra
2011-02-10* Don't allocate a big initial GC address space on machines withEelco Dolstra
2011-02-09* Don't call GC_expand_hp unless we're actually using the garbageEelco Dolstra
2011-02-09Use $BDW_GC_LIBS instead of a custom variable.Ludovic Courtès
2011-01-14* builtins.substring: if "start" is beyond the end of the string,Eelco Dolstra
2010-11-25* DrvInfo contains pointers to expressions, so DrvInfos should beEelco Dolstra
2010-10-28* new(UseGC) is inexplicably slower than GC_MALLOC, so prefer theEelco Dolstra
2010-10-28* Handle out of memory condition.Eelco Dolstra
2010-10-24* When allocating an attribute set, reserve enough space for allEelco Dolstra
2010-10-24* Keep attribute sets in sorted order to speed up attribute lookups.Eelco Dolstra
2010-10-24* Don't create thunks for variable lookups (if possible). ThisEelco Dolstra
2010-10-24* Store attribute sets as a vector instead of a map (i.e. a red-blackEelco Dolstra
2010-10-23* Fix compiling without Boehm.Eelco Dolstra
2010-10-23* Optimise string constants by putting them in the symbol table.Eelco Dolstra
2010-10-23* Make Value smaller by not storing redundant PrimOp info.Eelco Dolstra
2010-10-23* Remove allocValues().Eelco Dolstra
2010-10-22* In environments, store pointers to values rather than values. ThisEelco Dolstra
2010-10-22* Store Value nodes outside of attribute sets. I.e., Attr now storesEelco Dolstra
2010-10-22* Make building against the Boehm GC a configure option.Eelco Dolstra
2010-10-20* Keep some more stats.Eelco Dolstra
2010-10-20* Use the Boehm garbage collector to reclaim unused memory in the NixEelco Dolstra
2010-10-04* Make sure that config.h is included before the system headers,Eelco Dolstra
2010-10-04* If std::tr1::unordered_set is unavailable, use std::set.Eelco Dolstra
2010-10-04* Hack needed for GCC 4.3.2 on OpenSolaris.Eelco Dolstra
2010-08-27* Oops - "null" was displayed as "true".Eelco Dolstra
2010-08-02* Optimisation in the // operator: if one of the sets is empty, returnEelco Dolstra
2010-08-02* intersectAttrs: optimise for the case where the second set is largerEelco Dolstra
2010-06-10* builtins.toXML: propagate the string context. This is a regressionEelco Dolstra
2010-06-02(no commit message)Eelco Dolstra
2010-06-01* Turn build errors during evaluation into EvalErrors.Eelco Dolstra
2010-05-18* The << operator on values should be const.Eelco Dolstra
2010-05-15* Restore the __overrides feature that was lost somewhere in theEelco Dolstra
2010-05-12* Print attributes in sorted order.Eelco Dolstra