about summary refs log tree commit diff
path: root/src/libexpr/primops.cc (follow)
AgeCommit message (Expand)AuthorFilesLines
2012-08-13 Add a primop ‘concatLists’Eelco Dolstra1-0/+10
2012-08-13 Provide an efficient implementation of ‘elem’Eelco Dolstra1-2/+17
2012-08-13 Add a "filter" primopEelco Dolstra1-0/+25
2012-08-12 Add some basic profiling support to the evaluatorEelco Dolstra1-1/+2
2012-07-25 prim_import: When importing .drvs, allocate the intermediate attrset on the h...Shea Levy1-1/+1
2012-07-25 import: If the path is a valid .drv file, parse it and generate a derivation ...Shea Levy1-1/+25
2012-07-12 builtins.storePath: resolve symlinksEelco Dolstra1-1/+5
2012-06-27 nix-store -r: do substitutions in parallelEelco Dolstra1-1/+1
2012-02-04 * Inline some functions and get rid of the indirection throughEelco Dolstra1-0/+1
2012-01-26 * Fix importing a derivation. This gave a segfault.Eelco Dolstra1-8/+23
2012-01-19 * Add some debug output to print the derivation name once it's known.Eelco Dolstra1-1/+4
2012-01-03 * Drop the inefficient "Path" suffix in output attribute names.Eelco Dolstra1-3/+1
2012-01-03 * Move the implementation of the ‘derivation’ primop into a separateEelco Dolstra1-23/+1
2011-12-21 * The ‘foo.drvPath’ feature was already broken in read-only mode.Eelco Dolstra1-1/+2
2011-12-21 * Simplify the context handling logic.Eelco Dolstra1-24/+13
2011-12-16 * Sync with the trunk.Eelco Dolstra1-14/+3
2011-12-02 * Move parseHash16or32 into libutil, and use in nix-hash.Eelco Dolstra1-11/+1
2011-11-06 There's no need to mess with drvPath at allShea Levy1-6/+4
2011-11-06 Fix faulty reversion of my changes to unsafeDiscardOutputDependencyShea Levy1-1/+1
2011-11-06 Respect all outputs passed to the derivation, not just the last oneShea Levy1-1/+3
2011-11-06 Embed output name into the context of the *OutPath attributes and extract it ...Shea Levy1-2/+9
2011-11-06 Include all outputs of derivations in the closure of explicitly-passed deriva...Shea Levy1-2/+8
2011-11-06 The 'insert output between = signs' approach was not helpfulShea Levy1-9/+2
2011-09-16 Remove the current output metadata from the string for unsaveDiscardOutputDep...Shea Levy1-1/+8
2011-09-16 Add information about which output is active to drvPath's contextShea Levy1-4/+6
2011-09-16 Add a currentOutput attribute to derivations keep track of which output is ac...Shea Levy1-1/+4
2011-09-14 First attempt at the output-as-derivation semanticsShea Levy1-9/+27
2011-08-31 * Eliminate all uses of the global variable ‘store’ from libstore.Eelco Dolstra1-4/+4
2011-08-06 * Refactoring: move parseExprFromFile() and parseExprFromString() intoEelco Dolstra1-2/+1
2011-07-20 * Don't allow derivations with fixed and non-fixed outputs.Eelco Dolstra1-43/+38
2011-07-20 * Fix a huuuuge security hole in the Nix daemon. It didn't check thatEelco Dolstra1-61/+3
2011-07-18 * Support multiple outputs. A derivation can declare multiple outputsEelco Dolstra1-45/+84
2011-01-14 * builtins.substring: if "start" is beyond the end of the string,Eelco Dolstra1-1/+1
2010-10-24 * When allocating an attribute set, reserve enough space for allEelco Dolstra1-11/+12
2010-10-24 * Keep attribute sets in sorted order to speed up attribute lookups.Eelco Dolstra1-8/+24
2010-10-24 * Don't create thunks for variable lookups (if possible). ThisEelco Dolstra1-1/+1
2010-10-24 * Store attribute sets as a vector instead of a map (i.e. a red-blackEelco Dolstra1-28/+37
2010-10-23 * Remove allocValues().Eelco Dolstra1-16/+7
2010-10-22 * Store Value nodes outside of attribute sets. I.e., Attr now storesEelco Dolstra1-36/+34
2010-10-04 * Make sure that config.h is included before the system headers,Eelco Dolstra1-1/+1
2010-08-02 * intersectAttrs: optimise for the case where the second set is largerEelco Dolstra1-7/+7
2010-06-01 * Turn build errors during evaluation into EvalErrors.Eelco Dolstra1-1/+5
2010-05-12 * Implemented tryEval, the last missing primop in the fast-evalEelco Dolstra1-12/+6
2010-05-07 * Sync with the trunk.Eelco Dolstra1-1/+1
2010-05-07 * Updated addErrorContext.Eelco Dolstra1-6/+7
2010-05-07 * Keep track of the source positions of attributes.Eelco Dolstra1-30/+36
2010-04-21 * Fixed builtins.genericClosure.Eelco Dolstra1-22/+54
2010-04-21 * Store user environment manifests as a Nix expression inEelco Dolstra1-14/+17
2010-04-19 * Don't use the ATerm library for parsing/printing .drv files.Eelco Dolstra1-1/+1
2010-04-16 * Updated some more primops.Eelco Dolstra1-48/+23