tests: migrate eval-store.sh

Change-Id: Id4a721871218160b441e848f6f252c06187320bf
This commit is contained in:
rootile
2026-06-14 18:46:39 +02:00
parent 12baca7bea
commit ba3a026f40
4 changed files with 79 additions and 51 deletions
@@ -0,0 +1,10 @@
with import ./config.nix;
import (
mkDerivation {
name = "foo";
bla = import ./dependencies.nix {};
buildCommand = "
echo \\\"hi\\\" > $out
";
}
)