mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
52 lines
924 B
Bash
Executable file
52 lines
924 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Test circular flake dependencies.
|
|
source ./common.sh
|
|
|
|
requireGit
|
|
|
|
flakeA=$TEST_ROOT/flakeA
|
|
flakeB=$TEST_ROOT/flakeB
|
|
|
|
createGitRepo "$flakeA"
|
|
createGitRepo "$flakeB"
|
|
|
|
cat > "$flakeA"/flake.nix <<EOF
|
|
{
|
|
inputs.b.url = git+file://$flakeB;
|
|
inputs.b.inputs.a.follows = "/";
|
|
|
|
outputs = { self, b }: {
|
|
foo = 123 + b.bar;
|
|
xyzzy = 1000;
|
|
};
|
|
}
|
|
EOF
|
|
|
|
git -C "$flakeA" add flake.nix
|
|
|
|
cat > "$flakeB"/flake.nix <<EOF
|
|
{
|
|
inputs.a.url = git+file://$flakeA;
|
|
|
|
outputs = { self, a }: {
|
|
bar = 456 + a.xyzzy;
|
|
};
|
|
}
|
|
EOF
|
|
|
|
git -C "$flakeB" add flake.nix
|
|
git -C "$flakeB" commit -a -m 'Foo'
|
|
|
|
[[ $(nix eval "$flakeA#foo") = 1579 ]]
|
|
[[ $(nix eval "$flakeA#foo") = 1579 ]]
|
|
|
|
sed -i "$flakeB"/flake.nix -e 's/456/789/'
|
|
git -C "$flakeB" commit -a -m 'Foo'
|
|
|
|
nix flake update b --flake "$flakeA"
|
|
[[ $(nix eval "$flakeA#foo") = 1912 ]]
|
|
|
|
# Test list-inputs with circular dependencies
|
|
nix flake metadata "$flakeA"
|
|
|