Remove the git+ and hg+ prefixes from structured input refs

This commit is contained in:
Eelco Dolstra
2020-02-02 13:06:00 +01:00
parent 90ada8e31a
commit a9ebc3ea5d
3 changed files with 15 additions and 10 deletions
+4 -1
View File
@@ -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 }: {
};