dream2nix/tests/examples/default.nix

51 lines
913 B
Nix

{
self,
lib,
async,
bash,
coreutils,
git,
parallel,
nix,
utils,
dream2nixWithExternals,
...
}: let
l = lib // builtins;
examples = ../../examples;
testScript =
utils.writePureShellScript
[
async
bash
coreutils
git
nix
]
''
dir=$1
shift
echo -e "\ntesting example for $dir"
cp -r ${examples}/$dir/* .
chmod -R +w .
nix flake lock --override-input dream2nix ${../../.}
nix eval --read-only --no-allow-import-from-derivation .#default.name
nix run .#resolveImpure || echo "no resolveImpure probably?"
nix flake check "$@"
'';
in
utils.writePureShellScript
[
coreutils
parallel
]
''
if [ -z ''${1+x} ]; then
parallel --halt now,fail=1 -j$(nproc) -a <(ls ${examples}) ${testScript}
else
arg1=$1
shift
${testScript} $arg1 "$@"
fi
''