aboutsummaryrefslogtreecommitdiff
path: root/src/nix/diff-closures.cc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2022-03-02 23:48:52 +0100
committerGitHub <noreply@github.com>2022-03-02 23:48:52 +0100
commit3e3d0711d4c4409172b3e3f342e204d04d554f4b (patch)
tree09fa9a4ff346e06897fc7cdde6cdb6db7d1512d6 /src/nix/diff-closures.cc
parentb2da2a22c64a040f3cc83180f636b5fe972c16b1 (diff)
parentd4538034b7fba772a5f87c2efa66dbbd76760142 (diff)
Merge pull request #6197 from edolstra/nix-profile-ca
nix profile: Support CA derivations
Diffstat (limited to 'src/nix/diff-closures.cc')
-rw-r--r--src/nix/diff-closures.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix/diff-closures.cc b/src/nix/diff-closures.cc
index 734c41e0e..0621d662c 100644
--- a/src/nix/diff-closures.cc
+++ b/src/nix/diff-closures.cc
@@ -131,9 +131,9 @@ struct CmdDiffClosures : SourceExprCommand
void run(ref<Store> store) override
{
auto before = parseInstallable(store, _before);
- auto beforePath = toStorePath(getEvalStore(), store, Realise::Outputs, operateOn, before);
+ auto beforePath = Installable::toStorePath(getEvalStore(), store, Realise::Outputs, operateOn, before);
auto after = parseInstallable(store, _after);
- auto afterPath = toStorePath(getEvalStore(), store, Realise::Outputs, operateOn, after);
+ auto afterPath = Installable::toStorePath(getEvalStore(), store, Realise::Outputs, operateOn, after);
printClosureDiff(store, beforePath, afterPath, "");
}
};