mirror of
https://github.com/NixOS/nix.git
synced 2024-11-25 16:23:02 +00:00
Test dirOf behaviour on the root of a flake
This commit is contained in:
parent
4d99d07bc9
commit
458441c637
@ -21,6 +21,8 @@ writeSimpleFlake() {
|
|||||||
|
|
||||||
# To test "nix flake init".
|
# To test "nix flake init".
|
||||||
legacyPackages.$system.hello = import ./simple.nix;
|
legacyPackages.$system.hello = import ./simple.nix;
|
||||||
|
|
||||||
|
parent = builtins.dirOf ./.;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
@ -231,6 +231,9 @@ nix build -o "$TEST_ROOT/result" --expr "(builtins.getFlake \"$flake1Dir\").pack
|
|||||||
# 'getFlake' on a locked flakeref should succeed even in pure mode.
|
# 'getFlake' on a locked flakeref should succeed even in pure mode.
|
||||||
nix build -o "$TEST_ROOT/result" --expr "(builtins.getFlake \"git+file://$flake1Dir?rev=$hash2\").packages.$system.default"
|
nix build -o "$TEST_ROOT/result" --expr "(builtins.getFlake \"git+file://$flake1Dir?rev=$hash2\").packages.$system.default"
|
||||||
|
|
||||||
|
# Regression test for dirOf on the root of the flake.
|
||||||
|
[[ $(nix eval --json flake1#parent) = \""$NIX_STORE_DIR"\" ]]
|
||||||
|
|
||||||
# Building a flake with an unlocked dependency should fail in pure mode.
|
# Building a flake with an unlocked dependency should fail in pure mode.
|
||||||
(! nix build -o "$TEST_ROOT/result" flake2#bar --no-registries)
|
(! nix build -o "$TEST_ROOT/result" flake2#bar --no-registries)
|
||||||
(! nix build -o "$TEST_ROOT/result" flake2#bar --no-use-registries)
|
(! nix build -o "$TEST_ROOT/result" flake2#bar --no-use-registries)
|
||||||
|
Loading…
Reference in New Issue
Block a user