2011-06-22 19:34:27 +00:00
|
|
|
# tested so far with:
|
|
|
|
# - no revision specified and remote has a HEAD which is used
|
|
|
|
# - revision specified and remote has a HEAD
|
2011-06-22 21:01:36 +00:00
|
|
|
# - revision specified and remote without HEAD
|
2009-06-24 12:48:01 +00:00
|
|
|
source $stdenv/setup
|
|
|
|
|
|
|
|
header "exporting $url (rev $rev) into $out"
|
|
|
|
|
2014-03-23 16:19:39 +00:00
|
|
|
$fetcher --builder --url "$url" --out "$out" --rev "$rev" \
|
|
|
|
${leaveDotGit:+--leave-dotGit} \
|
2015-03-10 11:40:19 +00:00
|
|
|
${deepClone:+--deepClone} \
|
2014-03-23 16:19:39 +00:00
|
|
|
${fetchSubmodules:+--fetch-submodules}
|
2009-06-24 12:48:01 +00:00
|
|
|
|
2010-01-27 12:12:35 +00:00
|
|
|
stopNest
|