tests/functional/nix-shell.sh: Fix Polo test for VM test

It is unclear to me why this worked when not in a VM test, but the
explanation would be in the part of nix-shell we're getting rid of
with the devShell attribute.
This commit is contained in:
Robert Hensing 2024-07-07 13:03:19 +02:00
parent 0f8a655023
commit e1106b45a3

View File

@ -56,6 +56,7 @@ let pkgs = rec {
# See nix-shell.sh
polo = mkDerivation {
name = "polo";
inherit stdenv;
shellHook = ''
echo Polo
'';