tangled
alpha
login
or
join now
isabelroses.com
/
fetch-tangled
21
fork
atom
this repo has no description
21
fork
atom
overview
issues
pulls
1
pipelines
feat: take and unshadow passthru
isabelroses.com
4 months ago
6b88fc23
96ac9f75
+4
-1
1 changed file
expand all
collapse all
unified
split
fetcher.nix
+4
-1
fetcher.nix
···
31
fetchLFS ? false,
32
sparseCheckout ? [ ],
33
0
34
meta ? { },
35
...
36
}@args:
···
103
leaveDotGit
104
;
105
url = baseUrl;
0
106
}
107
else
108
{
···
111
112
passthru = {
113
gitRepoUrl = baseUrl;
114
-
};
0
115
}
116
)
117
// {
···
31
fetchLFS ? false,
32
sparseCheckout ? [ ],
33
34
+
passthru ? { },
35
meta ? { },
36
...
37
}@args:
···
104
leaveDotGit
105
;
106
url = baseUrl;
107
+
inherit passthru;
108
}
109
else
110
{
···
113
114
passthru = {
115
gitRepoUrl = baseUrl;
116
+
}
117
+
// passthru;
118
}
119
)
120
// {