mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-13 01:36:15 +02:00
39 lines
1.1 KiB
Bash
Executable file
39 lines
1.1 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
source ./common.sh
|
|
|
|
requireGit
|
|
|
|
flake1Dir="$TEST_ROOT/eval-cache-flake"
|
|
|
|
createGitRepo "$flake1Dir" ""
|
|
cp ../simple.nix ../simple.builder.sh ../config.nix "$flake1Dir/"
|
|
git -C "$flake1Dir" add simple.nix simple.builder.sh config.nix
|
|
git -C "$flake1Dir" commit -m "config.nix"
|
|
|
|
cat >"$flake1Dir/flake.nix" <<EOF
|
|
{
|
|
description = "Fnord";
|
|
outputs = { self }: let inherit (import ./config.nix) mkDerivation; in {
|
|
foo.bar = throw "breaks";
|
|
drv = mkDerivation {
|
|
name = "build";
|
|
buildCommand = ''
|
|
echo true > \$out
|
|
'';
|
|
};
|
|
ifd = assert (import self.drv); self.drv;
|
|
};
|
|
}
|
|
EOF
|
|
|
|
git -C "$flake1Dir" add flake.nix
|
|
git -C "$flake1Dir" commit -m "Init"
|
|
|
|
expect 1 nix build "$flake1Dir#foo.bar" 2>&1 | grepQuiet 'error: breaks'
|
|
expect 1 nix build "$flake1Dir#foo.bar" 2>&1 | grepQuiet 'error: breaks'
|
|
|
|
# Conditional error should not be cached
|
|
expect 1 nix build "$flake1Dir#ifd" --option allow-import-from-derivation false 2>&1 \
|
|
| grepQuiet 'error: cannot build .* during evaluation because the option '\''allow-import-from-derivation'\'' is disabled'
|
|
nix build --no-link "$flake1Dir#ifd"
|