aboutsummaryrefslogtreecommitdiff
path: root/src/nix
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2020-03-28 18:05:50 +0100
committerEelco Dolstra <edolstra@gmail.com>2020-03-28 18:05:50 +0100
commit2287e2f279ac544a2c11921be51f2f556cb78abc (patch)
tree331cdc7c1a185306999ac36a8229225d7decab77 /src/nix
parent5f75d56c9bb4937b7cc9b7f20b31ef151adf4497 (diff)
nix flake info: Show flake subdirectory
Diffstat (limited to 'src/nix')
-rw-r--r--src/nix/flake.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix/flake.cc b/src/nix/flake.cc
index 317d1bc18..b090ea201 100644
--- a/src/nix/flake.cc
+++ b/src/nix/flake.cc
@@ -79,7 +79,7 @@ struct CmdFlakeList : EvalCommand
static void printFlakeInfo(const Store & store, const Flake & flake)
{
- std::cout << fmt("URL: %s\n", flake.lockedRef.input->to_string());
+ std::cout << fmt("URL: %s\n", flake.lockedRef.to_string());
std::cout << fmt("Edition: %s\n", flake.edition);
if (flake.description)
std::cout << fmt("Description: %s\n", *flake.description);
@@ -99,7 +99,7 @@ static nlohmann::json flakeToJson(const Store & store, const Flake & flake)
if (flake.description)
j["description"] = *flake.description;
j["edition"] = flake.edition;
- j["url"] = flake.lockedRef.input->to_string();
+ j["url"] = flake.lockedRef.to_string();
if (auto rev = flake.lockedRef.input->getRev())
j["revision"] = rev->to_string(Base16, false);
if (flake.sourceInfo->info.revCount)