diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-02-02 13:06:00 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-02-02 13:06:00 +0100 |
commit | a9ebc3ea5db2fb0cbf7ab8ea35c9d9d5073abfc8 (patch) | |
tree | 364b2ada9d5202543491b42b0ffd8630e55a02cb /tests/flakes.sh | |
parent | 90ada8e31ad292bd126c6ed18e5cedcfe4b478ca (diff) |
Remove the git+ and hg+ prefixes from structured input refs
Diffstat (limited to 'tests/flakes.sh')
-rw-r--r-- | tests/flakes.sh | 5 |
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 }: { }; |