From 68f61d3fcfbc36357a3fca0a948b815d4e620a36 Mon Sep 17 00:00:00 2001 From: Sergei Zimmerman Date: Wed, 6 Aug 2025 11:01:34 +0300 Subject: [PATCH] nix/profile.cc: Fix header include path This wasn't caught by CI for aea312dae39d8cf2c2409b03b54ca6520e29732c due to weird componentized build reasons. --- src/nix/profile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nix/profile.cc b/src/nix/profile.cc index 1f00d8fa4..df92d888e 100644 --- a/src/nix/profile.cc +++ b/src/nix/profile.cc @@ -7,7 +7,7 @@ #include "nix/util/archive.hh" #include "nix/store/builtins/buildenv.hh" #include "nix/flake/flakeref.hh" -#include "../nix-env/user-env.hh" +#include "nix-env/user-env.hh" #include "nix/store/profiles.hh" #include "nix/store/names.hh" #include "nix/util/url.hh"