nixpkgs/pkgs/build-support/fetchgit/builder.sh

18 lines
521 B
Bash
Raw Normal View History

# tested so far with:
# - no revision specified and remote has a HEAD which is used
# - revision specified and remote has a HEAD
# - revision specified and remote without HEAD
source $stdenv/setup
header "exporting $url (rev $rev) into $out"
$SHELL $fetcher --builder --url "$url" --out "$out" --rev "$rev" \
${leaveDotGit:+--leave-dotGit} \
2020-12-05 07:32:48 +00:00
${fetchLFS:+--fetch-lfs} \
${deepClone:+--deepClone} \
${fetchSubmodules:+--fetch-submodules} \
${branchName:+--branch-name "$branchName"}
2017-06-03 18:45:51 +00:00
runHook postFetch
stopNest