pkgs/test/config-nix-unit: use builtins.path with stable name

This commit is contained in:
Johannes Kirschbauer 2026-05-07 19:13:56 +02:00
commit 3eec0ac0dc
No known key found for this signature in database

View file

@ -139,7 +139,12 @@ in
''
export HOME=$TMPDIR
nix-unit --eval-store "$HOME" ${./config-nix-unit.nix} \
--arg nixpkgsPath "${../..}"
--arg nixpkgsPath "${
builtins.path {
path = pkgs.path;
name = "source";
}
}"
mkdir $out
'';