aboutsummaryrefslogtreecommitdiff
path: root/tests/flakes.sh
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2020-02-02 13:06:00 +0100
committerEelco Dolstra <edolstra@gmail.com>2020-02-02 13:06:00 +0100
commita9ebc3ea5db2fb0cbf7ab8ea35c9d9d5073abfc8 (patch)
tree364b2ada9d5202543491b42b0ffd8630e55a02cb /tests/flakes.sh
parent90ada8e31ad292bd126c6ed18e5cedcfe4b478ca (diff)
Remove the git+ and hg+ prefixes from structured input refs
Diffstat (limited to 'tests/flakes.sh')
-rw-r--r--tests/flakes.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/flakes.sh b/tests/flakes.sh
index 1d0da556c..5a00d8671 100644
--- a/tests/flakes.sh
+++ b/tests/flakes.sh
@@ -516,7 +516,10 @@ cat > $flake3Dir/flake.nix <<EOF
{
edition = 201909;
- inputs.flake2.inputs.flake1.url = git+file://$flake7Dir;
+ inputs.flake2.inputs.flake1 = {
+ type = "git";
+ url = file://$flake7Dir;
+ };
outputs = { self, flake2 }: {
};