aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2020-02-19 00:09:42 +0100
committerEelco Dolstra <edolstra@gmail.com>2020-02-19 00:09:42 +0100
commit95468e3c1e5e42c501bae61d80d08c509629a0f9 (patch)
tree219e925b529f7bc766339260a910e2653c143b42 /src
parent50cf77cecd6ed2c98fab1651e54f7a8dcc162db6 (diff)
Fix nixpkgs.<attr> warning
Diffstat (limited to 'src')
-rw-r--r--src/nix/installables.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/installables.cc b/src/nix/installables.cc
index 071edf432..3bf4fa8f4 100644
--- a/src/nix/installables.cc
+++ b/src/nix/installables.cc
@@ -454,7 +454,7 @@ std::vector<std::shared_ptr<Installable>> SourceExprCommand::parseInstallables(
for (auto & s : ss) {
if (hasPrefix(s, "nixpkgs.")) {
bool static warned;
- warnOnce(warned, "the syntax 'nixpkgs.<attr>' is deprecated; use 'nixpkgs:<attr>' instead");
+ warnOnce(warned, "the syntax 'nixpkgs.<attr>' is deprecated; use 'nixpkgs#<attr>' instead");
result.push_back(std::make_shared<InstallableFlake>(*this,
FlakeRef::fromAttrs({{"type", "indirect"}, {"id", "nixpkgs"}}),
Strings{"legacyPackages." + settings.thisSystem.get() + "." + std::string(s, 8)}, Strings{}));