nix eval --raw: Use coerceToString()

Thus,

  $ nix eval --raw '("foo")'
  foo

  $ nix eval --raw nixpkgs.hello
  /nix/store/1y6ckg6khrdsvll54s5spcmf3w6ka9k4-hello-2.10

  $ nix eval --raw '(/etc/resolv.conf)'
  /nix/store/vml92ama92i8mz013nny461mlvg8mvap-resolv.conf
This commit is contained in:
Eelco Dolstra 2017-11-20 18:27:29 +01:00
parent 1ff01187e2
commit f5f29dc2b7
No known key found for this signature in database
GPG Key ID: 8170B4726D7198DE
1 changed files with 6 additions and 2 deletions

View File

@ -42,6 +42,10 @@ struct CmdEval : MixJSON, InstallablesCommand
"To get the current version of Nixpkgs:",
"nix eval --raw nixpkgs.lib.nixpkgsVersion"
},
Example{
"To print the store path of the Hello package:",
"nix eval --raw nixpkgs.hello"
},
};
}
@ -56,10 +60,10 @@ struct CmdEval : MixJSON, InstallablesCommand
for (auto & i : installables) {
auto v = i->toValue(*state);
PathSet context;
if (raw) {
std::cout << state->forceString(*v);
std::cout << state->coerceToString(noPos, *v, context);
} else if (json) {
PathSet context;
auto jsonElem = jsonOut->placeholder();
printValueAsJSON(*state, true, *v, jsonElem, context);
} else {