about summary refs log tree commit diff
path: root/src/libexpr/nixexpr-ast.def
AgeCommit message (Collapse)AuthorFilesLines
2006-07-24 * Refactoring to support domain checks.Eelco Dolstra1-2/+7
2006-05-02 * Use a linked list of substitutions. This reduces the amount ofEelco Dolstra1-0/+1
copying.
2006-05-01 * String interpolation. Expressions likeEelco Dolstra1-0/+1
"--with-freetype2-library=" + freetype + "/lib" can now be written as "--with-freetype2-library=${freetype}/lib" An arbitrary expression can be enclosed within ${...}, not just identifiers. * Escaping in string literals: \n, \r, \t interpreted as in C, any other character following \ is interpreted as-is. * Newlines are now allowed in string literals.
2006-05-01 * Allow string concatenations involving derivations, e.g.,Eelco Dolstra1-0/+1
configureFlags = "--with-freetype2-library=" + freetype + "/lib";
2005-07-25 * Added a list concatenation operator:Eelco Dolstra1-0/+1
[1 2 3] ++ [4 5 6] => [1 2 3 4 5 6]
2004-10-29 * Drop ATmake / ATMatcher also in handling store expressions.Eelco Dolstra1-0/+55