fix(nix): make all bash injections combined

This commit is contained in:
stefan 2026-01-28 15:55:38 -08:00 committed by Christian Clason
parent 5465196ba8
commit cc12e37e5b
2 changed files with 10 additions and 5 deletions

View file

@ -9,7 +9,8 @@ in {
drv1 = stdenv.mkDerivation {
buildPhase = "mkdir $out";
installPhase = ''
echo "bar" > $out/foo.txt
echo "${bar}" > $out/foo.txt
echo "baz"" >> $out/foo.txt
'';
};