diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-01-19T14·36+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-01-19T14·36+0000 |
commit | 06c77bf7a861221d41b5db9fad3002f13a14ed0e (patch) | |
tree | 8ddd8857f0364297bb8ffce1cf6a89b7cf0d396e /src/nix-env/main.cc | |
parent | 863dcff6c5ffc163010ec1f9e6819bb9aaaadc29 (diff) |
* Change extension `.store' to `.drv'.
* Re-enable `nix-store --query --requisites'.
Diffstat (limited to 'src/nix-env/main.cc')
-rw-r--r-- | src/nix-env/main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix-env/main.cc b/src/nix-env/main.cc index c9498907d5c6..4d2ad0c8978e 100644 --- a/src/nix-env/main.cc +++ b/src/nix-env/main.cc @@ -205,7 +205,7 @@ void createUserEnv(EvalState & state, const DrvInfos & drvs, /* Also write a copy of the list of inputs to the store; we need it for future modifications of the environment. */ - Path inputsFile = writeTerm(inputs2, "env-inputs"); + Path inputsFile = addTextToStore("env-inputs", atPrint(inputs2)); Expr topLevel = makeCall(envBuilder, makeAttrs(ATmakeList3( makeBind(toATerm("system"), |