diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-08-06 17:48:57 +0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-08-06 17:48:57 +0000 |
commit | c7101dac0bd2631e50846194fc841ef5ef77461f (patch) | |
tree | 597a2058c70f6000ade9f2f48ef9e998f70ce762 /src/libexpr/eval.hh | |
parent | 1578b2261d28003c8c1459041302e1f3c1921c43 (diff) |
* Allow redirections in search path entries. E.g. if you have a
directory
/home/eelco/src/stdenv-updates
that you want to use as the directory for import such as
with (import <nixpkgs> { });
then you can say
$ nix-build -I nixpkgs=/home/eelco/src/stdenv-updates
Diffstat (limited to 'src/libexpr/eval.hh')
-rw-r--r-- | src/libexpr/eval.hh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh index 1583665ba..413234f2b 100644 --- a/src/libexpr/eval.hh +++ b/src/libexpr/eval.hh @@ -213,8 +213,9 @@ private: std::map<Path, Expr *> parseTrees; - Paths searchPath; - Paths::iterator searchPathInsertionPoint; + typedef list<std::pair<string, Path> > SearchPath; + SearchPath searchPath; + SearchPath::iterator searchPathInsertionPoint; public: |